Spaces:
Runtime error
Runtime error
Hsun Lin
commited on
Commit
·
248c33b
1
Parent(s):
85c6474
Upload styles.css
Browse files- styles.css +39 -0
styles.css
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.gradio-container {
|
2 |
+
background-color:#0b1c31 !important;
|
3 |
+
max-width: 100%!important;
|
4 |
+
}
|
5 |
+
|
6 |
+
footer {
|
7 |
+
visibility: hidden
|
8 |
+
}
|
9 |
+
|
10 |
+
.gradio-container div, .gradio-container button, .gradio-container input {
|
11 |
+
border-radius:2px !important
|
12 |
+
}
|
13 |
+
|
14 |
+
.gradio-container .container, .gradio-container .contain {
|
15 |
+
background-color: transparent!important;
|
16 |
+
max-width: 100%!important;
|
17 |
+
}
|
18 |
+
|
19 |
+
::-webkit-scrollbar {
|
20 |
+
width: 6px;
|
21 |
+
height: 8px;
|
22 |
+
}
|
23 |
+
|
24 |
+
/* Track */
|
25 |
+
::-webkit-scrollbar-track {
|
26 |
+
background: #222323;
|
27 |
+
border-radius: 2px;
|
28 |
+
}
|
29 |
+
|
30 |
+
/* Handle */
|
31 |
+
::-webkit-scrollbar-thumb {
|
32 |
+
background: #686e76;
|
33 |
+
border-radius: 2px;
|
34 |
+
}
|
35 |
+
|
36 |
+
/* Handle on hover */
|
37 |
+
::-webkit-scrollbar-thumb:hover {
|
38 |
+
background: #79818b;
|
39 |
+
}
|