Spaces:
Runtime error
Runtime error
Kabatubare
commited on
Update style.css
Browse files
style.css
CHANGED
@@ -1,12 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.gradio-container {
|
2 |
-
|
|
|
|
|
|
|
|
|
3 |
}
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
#
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: 'Roboto', sans-serif;
|
3 |
+
background: #000; /* Deep space black */
|
4 |
+
color: #fff; /* Starlight white */
|
5 |
+
}
|
6 |
+
|
7 |
.gradio-container {
|
8 |
+
max-width: 800px !important;
|
9 |
+
background-color: #0a0a0a; /* Starfleet console black */
|
10 |
+
border: 1px solid #0096ff; /* Phaser beam blue */
|
11 |
+
border-radius: 5px;
|
12 |
+
padding: 20px;
|
13 |
}
|
14 |
|
15 |
+
.gradio-header, .gradio-footer {
|
16 |
+
background-color: #131313; /* Dark matter grey */
|
17 |
+
color: #ffffff;
|
18 |
+
}
|
19 |
+
|
20 |
+
.gradio-title {
|
21 |
+
color: #0096ff; /* Science officer blue */
|
22 |
+
}
|
23 |
+
|
24 |
+
.gradio-description {
|
25 |
+
color: #aaa; /* Nebula grey */
|
26 |
+
}
|
27 |
+
|
28 |
+
.gradio-input, .gradio-output, .gradio-button, .gradio-dropdown, .gradio-textbox {
|
29 |
+
background-color: #262626; /* Shuttlecraft grey */
|
30 |
+
border: 1px solid #0096ff; /* Warp speed blue */
|
31 |
+
color: #fff;
|
32 |
+
}
|
33 |
+
|
34 |
+
.gradio-button:hover {
|
35 |
+
background-color: #005f99; /* Red alert red */
|
36 |
+
color: #fff;
|
37 |
+
}
|
38 |
+
|
39 |
+
.gradio-label {
|
40 |
+
color: #ffffff; /* Phaser beam blue */
|
41 |
+
}
|
42 |
+
|
43 |
+
#share-btn-container, .gradio-button {
|
44 |
+
background-color: #262626; /* Shuttlecraft grey */
|
45 |
+
border-color: #0096ff; /* Phaser beam blue */
|
46 |
+
color: #ffffff;
|
47 |
+
}
|
48 |
+
|
49 |
+
#share-btn:hover {
|
50 |
+
background-color: #005f99; /* Red alert red */
|
51 |
+
color: #ffffff;
|
52 |
+
}
|