Spaces:
Running
Running
Azie88
commited on
Commit
·
0a6b3be
1
Parent(s):
ce55ba8
css
Browse files- styles.css +23 -0
styles.css
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
background-color: #121212;
|
3 |
+
color: #ffffff;
|
4 |
+
}
|
5 |
+
|
6 |
+
.gradio-container {
|
7 |
+
background-color: #121212;
|
8 |
+
color: #ffffff;
|
9 |
+
}
|
10 |
+
|
11 |
+
.gr-input, .gr-label, .gr-button, .gr-radio, .gr-slider {
|
12 |
+
background-color: #333333;
|
13 |
+
color: #ffffff;
|
14 |
+
border-color: #444444;
|
15 |
+
}
|
16 |
+
|
17 |
+
.gr-button {
|
18 |
+
background-color: #444444;
|
19 |
+
}
|
20 |
+
|
21 |
+
.gr-button:hover {
|
22 |
+
background-color: #555555;
|
23 |
+
}
|