Spaces:
Sleeping
Sleeping
Create style.css
Browse files
style.css
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: 'Arial', sans-serif;
|
| 3 |
+
background-color: #1a1a2e;
|
| 4 |
+
color: #ffffff;
|
| 5 |
+
}
|
| 6 |
+
.gradio-container {
|
| 7 |
+
background-color: #1a1a2e;
|
| 8 |
+
color: #ffffff;
|
| 9 |
+
}
|
| 10 |
+
.gr-button {
|
| 11 |
+
background-color: #4CAF50;
|
| 12 |
+
color: white;
|
| 13 |
+
border: none;
|
| 14 |
+
border-radius: 4px;
|
| 15 |
+
}
|
| 16 |
+
.gr-button:hover {
|
| 17 |
+
background-color: #45a049;
|
| 18 |
+
}
|
| 19 |
+
.gr-input, .gr-output {
|
| 20 |
+
background-color: #2a2a3e;
|
| 21 |
+
color: #ffffff;
|
| 22 |
+
border: 1px solid #4a4a5e;
|
| 23 |
+
display: block;
|
| 24 |
+
margin: 0 auto;
|
| 25 |
+
}
|
| 26 |
+
.gr-input:focus, .gr-output:focus {
|
| 27 |
+
outline: none;
|
| 28 |
+
border-color: #6a6a7e;
|
| 29 |
+
}
|
| 30 |
+
.gr-file-upload {
|
| 31 |
+
background-color: #2a2a3e;
|
| 32 |
+
color: #ffffff;
|
| 33 |
+
}
|
| 34 |
+
.gr-slider {
|
| 35 |
+
background-color: #2a2a3e;
|
| 36 |
+
color: #ffffff;
|
| 37 |
+
}
|
| 38 |
+
.gr-dropdown {
|
| 39 |
+
background-color: #2a2a3e;
|
| 40 |
+
color: #ffffff;
|
| 41 |
+
}
|
| 42 |
+
.gr-image-preview {
|
| 43 |
+
border: 2px solid #4a4a5e;
|
| 44 |
+
background-color: #2a2a3e;
|
| 45 |
+
}
|
| 46 |
+
.gr-textbox {
|
| 47 |
+
background-color: #2a2a3e;
|
| 48 |
+
color: #ffffff;
|
| 49 |
+
border: 1px solid #4a4a5e;
|
| 50 |
+
}
|
| 51 |
+
.gr-textbox:focus {
|
| 52 |
+
outline: none;
|
| 53 |
+
border-color: #6a6a7e;
|
| 54 |
+
}
|