Spaces:
Runtime error
Runtime error
Linoy Tsaban
commited on
Commit
•
1437a47
1
Parent(s):
536c8d2
Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
h1 {
|
2 |
+
text-align: center;
|
3 |
+
}
|
4 |
+
|
5 |
+
.gradio-container {
|
6 |
+
font-family: 'IBM Plex Sans', sans-serif;
|
7 |
+
}
|
8 |
+
|
9 |
+
.gr-button {
|
10 |
+
color: white;
|
11 |
+
border-color: black;
|
12 |
+
background: black;
|
13 |
+
}
|
14 |
+
|
15 |
+
input[type='range'] {
|
16 |
+
accent-color: black;
|
17 |
+
}
|
18 |
+
|
19 |
+
.dark input[type='range'] {
|
20 |
+
accent-color: #dfdfdf;
|
21 |
+
}
|
22 |
+
|
23 |
+
.container {
|
24 |
+
max-width: 730px;
|
25 |
+
margin: auto;
|
26 |
+
padding-top: 1.5rem;
|
27 |
+
}
|