Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -146,6 +146,17 @@ body {
|
|
146 |
min-height: 100vh;
|
147 |
}
|
148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
/* Header Styling */
|
150 |
#header {
|
151 |
color: #7fffd4;
|
@@ -309,20 +320,23 @@ label {
|
|
309 |
border-radius: 4px;
|
310 |
margin-right: 10px;
|
311 |
transition: all 0.3s ease;
|
|
|
312 |
}
|
313 |
|
314 |
-
/* Selected Checkbox Styling */
|
315 |
.gr-checkbox-group input[type="checkbox"]:checked {
|
316 |
background-color: #7fffd4;
|
317 |
border-color: #7fffd4;
|
318 |
}
|
319 |
|
320 |
-
/* Simple checkmark indicator */
|
321 |
.gr-checkbox-group input[type="checkbox"]:checked::after {
|
322 |
content: "✓";
|
323 |
-
font-size: 14px;
|
324 |
color: #003c7c;
|
325 |
-
|
|
|
|
|
|
|
|
|
326 |
text-align: center;
|
327 |
}
|
328 |
|
|
|
146 |
min-height: 100vh;
|
147 |
}
|
148 |
|
149 |
+
/* Heading Colors */
|
150 |
+
h1 {
|
151 |
+
color: #ffffff; /* White color for h1 */
|
152 |
+
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
|
153 |
+
}
|
154 |
+
|
155 |
+
h2, h3, h4, h5, h6 {
|
156 |
+
color: #f0e68c; /* Light yellow shadow for other headings */
|
157 |
+
text-shadow: 2px 2px 10px rgba(255, 255, 0, 0.3);
|
158 |
+
}
|
159 |
+
|
160 |
/* Header Styling */
|
161 |
#header {
|
162 |
color: #7fffd4;
|
|
|
320 |
border-radius: 4px;
|
321 |
margin-right: 10px;
|
322 |
transition: all 0.3s ease;
|
323 |
+
position: relative;
|
324 |
}
|
325 |
|
326 |
+
/* Selected Checkbox Styling with Checkmark */
|
327 |
.gr-checkbox-group input[type="checkbox"]:checked {
|
328 |
background-color: #7fffd4;
|
329 |
border-color: #7fffd4;
|
330 |
}
|
331 |
|
|
|
332 |
.gr-checkbox-group input[type="checkbox"]:checked::after {
|
333 |
content: "✓";
|
|
|
334 |
color: #003c7c;
|
335 |
+
position: absolute;
|
336 |
+
top: 0;
|
337 |
+
left: 5px;
|
338 |
+
font-size: 14px;
|
339 |
+
line-height: 20px;
|
340 |
text-align: center;
|
341 |
}
|
342 |
|