Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -40,13 +40,14 @@ custom_css = """
|
|
| 40 |
/* Add your custom CSS styles here */
|
| 41 |
body {
|
| 42 |
font-family: Arial, sans-serif;
|
| 43 |
-
background-color:
|
| 44 |
}
|
| 45 |
.gradio-container {
|
| 46 |
-
border: 10px solid
|
| 47 |
border-radius: 10px;
|
| 48 |
padding: 20px;
|
| 49 |
background-color: #ffffff;
|
|
|
|
| 50 |
}
|
| 51 |
.gradio-input {
|
| 52 |
border-radius: 5px;
|
|
@@ -64,6 +65,7 @@ body {
|
|
| 64 |
border: 1px solid #ddd;
|
| 65 |
padding: 10px;
|
| 66 |
border-radius: 5px;
|
|
|
|
| 67 |
}
|
| 68 |
"""
|
| 69 |
|
|
|
|
| 40 |
/* Add your custom CSS styles here */
|
| 41 |
body {
|
| 42 |
font-family: Arial, sans-serif;
|
| 43 |
+
background-color: white;
|
| 44 |
}
|
| 45 |
.gradio-container {
|
| 46 |
+
border: 10px solid black;
|
| 47 |
border-radius: 10px;
|
| 48 |
padding: 20px;
|
| 49 |
background-color: #ffffff;
|
| 50 |
+
box-shadow:0 0 12px 12px solid black;
|
| 51 |
}
|
| 52 |
.gradio-input {
|
| 53 |
border-radius: 5px;
|
|
|
|
| 65 |
border: 1px solid #ddd;
|
| 66 |
padding: 10px;
|
| 67 |
border-radius: 5px;
|
| 68 |
+
box-shadow:0 0 12px 12px solid grey;
|
| 69 |
}
|
| 70 |
"""
|
| 71 |
|