Spaces:
Runtime error
Runtime error
Garrett Goon
commited on
Commit
·
bb2f2c4
1
Parent(s):
d2df002
more css
Browse files
app.py
CHANGED
@@ -84,6 +84,9 @@ css = """
|
|
84 |
.flex-grow {
|
85 |
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
|
86 |
}
|
|
|
|
|
|
|
87 |
.gr-padded {
|
88 |
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: black !important;
|
89 |
}
|
@@ -96,11 +99,14 @@ css = """
|
|
96 |
.h-6 {
|
97 |
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
|
98 |
}
|
|
|
|
|
|
|
99 |
.gr-samples-gallery {
|
100 |
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: black !important;
|
101 |
}
|
102 |
.gr-sample-textbox:hover {
|
103 |
-
font-family: 'Roboto', sans-serif; background-color:
|
104 |
}
|
105 |
h1 {
|
106 |
font-family: 'Roboto', sans-serif; color: black !important;
|
@@ -123,6 +129,11 @@ css = """
|
|
123 |
border-color: black;
|
124 |
background: white !important;
|
125 |
}
|
|
|
|
|
|
|
|
|
|
|
126 |
input[type='range'] {
|
127 |
accent-color: white;
|
128 |
}
|
@@ -172,6 +183,16 @@ css = """
|
|
172 |
background: white !important;
|
173 |
color: black !important;
|
174 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
#advanced-options {
|
176 |
display: none;
|
177 |
margin-bottom: 20px;
|
|
|
84 |
.flex-grow {
|
85 |
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
|
86 |
}
|
87 |
+
.font-mono {
|
88 |
+
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
|
89 |
+
}
|
90 |
.gr-padded {
|
91 |
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: black !important;
|
92 |
}
|
|
|
99 |
.h-6 {
|
100 |
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
|
101 |
}
|
102 |
+
.h-6 {
|
103 |
+
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
|
104 |
+
}
|
105 |
.gr-samples-gallery {
|
106 |
font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: black !important;
|
107 |
}
|
108 |
.gr-sample-textbox:hover {
|
109 |
+
font-family: 'Roboto', sans-serif; background-color: #BAD7DF !important; font-color: black !important; color: black !important;
|
110 |
}
|
111 |
h1 {
|
112 |
font-family: 'Roboto', sans-serif; color: black !important;
|
|
|
129 |
border-color: black;
|
130 |
background: white !important;
|
131 |
}
|
132 |
+
.grow-0:hover {
|
133 |
+
color: black !important;
|
134 |
+
border-color: black;
|
135 |
+
background: #BAD7DF !important;
|
136 |
+
}
|
137 |
input[type='range'] {
|
138 |
accent-color: white;
|
139 |
}
|
|
|
183 |
background: white !important;
|
184 |
color: black !important;
|
185 |
}
|
186 |
+
#license-btn:hover {
|
187 |
+
color: black !important;
|
188 |
+
border-color: black;
|
189 |
+
background: #BAD7DF !important;
|
190 |
+
}
|
191 |
+
#advanced-btn:hover {
|
192 |
+
color: black !important;
|
193 |
+
border-color: black;
|
194 |
+
background: #BAD7DF !important;
|
195 |
+
}
|
196 |
#advanced-options {
|
197 |
display: none;
|
198 |
margin-bottom: 20px;
|