Spaces:
Sleeping
Sleeping
changes to font color
Browse files- styles.css +36 -0
styles.css
CHANGED
@@ -235,3 +235,39 @@ input[type="text"]:focus {
|
|
235 |
|
236 |
.search-panel { background-color: green !important; }
|
237 |
.search-panel, .search-panel * { color: #FFF !important; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
|
236 |
.search-panel { background-color: green !important; }
|
237 |
.search-panel, .search-panel * { color: #FFF !important; }
|
238 |
+
|
239 |
+
/* your existing panel styles */
|
240 |
+
.checkbox-panel {
|
241 |
+
background-color: green !important;
|
242 |
+
padding: 12px !important;
|
243 |
+
border-radius: 6px !important;
|
244 |
+
}
|
245 |
+
.checkbox-panel, .checkbox-panel * {
|
246 |
+
color: #FFFFFF !important;
|
247 |
+
}
|
248 |
+
|
249 |
+
/* make the checkbox “cards” transparent */
|
250 |
+
.checkbox-panel .checkbox-container {
|
251 |
+
background-color: transparent !important;
|
252 |
+
}
|
253 |
+
|
254 |
+
/* similarly for the search bar row */
|
255 |
+
.search-panel {
|
256 |
+
background-color: green !important;
|
257 |
+
padding: 12px !important;
|
258 |
+
border-radius: 6px !important;
|
259 |
+
}
|
260 |
+
.search-panel, .search-panel * {
|
261 |
+
color: #FFFFFF !important;
|
262 |
+
}
|
263 |
+
|
264 |
+
/* strip out Gradio’s default input wrapper */
|
265 |
+
.search-panel .gr-form-group {
|
266 |
+
background-color: transparent !important;
|
267 |
+
}
|
268 |
+
|
269 |
+
/* placeholder styling */
|
270 |
+
.search-panel .search-input input::placeholder {
|
271 |
+
color: rgba(255,255,255,0.7) !important;
|
272 |
+
}
|
273 |
+
|