Spaces:
Sleeping
Sleeping
Create style.css
Browse files
style.css
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* style.css */
|
| 2 |
+
body {
|
| 3 |
+
background-color: #0f0f0f;
|
| 4 |
+
color: white;
|
| 5 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
.gradio-container {
|
| 9 |
+
max-width: 1000px;
|
| 10 |
+
margin: auto;
|
| 11 |
+
background-color: #1a1a1a;
|
| 12 |
+
border-radius: 10px;
|
| 13 |
+
padding: 20px;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.tab-wrap {
|
| 17 |
+
background-color: #222;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
button {
|
| 21 |
+
background-color: #8e44ad !important;
|
| 22 |
+
border: none !important;
|
| 23 |
+
color: white !important;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
button:hover {
|
| 27 |
+
background-color: #9b59b6 !important;
|
| 28 |
+
}
|