Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -284,6 +284,30 @@ body {
|
|
| 284 |
font-weight: 600;
|
| 285 |
}
|
| 286 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 287 |
"""
|
| 288 |
|
| 289 |
# Combine any existing CSS with the new enhanced CSS
|
|
|
|
| 284 |
font-weight: 600;
|
| 285 |
}
|
| 286 |
|
| 287 |
+
|
| 288 |
+
/* ---- INTRODUCTION TEXT ---- */
|
| 289 |
+
.introduction-section {
|
| 290 |
+
font-size: 1.4rem !important;
|
| 291 |
+
line-height: 1.75;
|
| 292 |
+
color: #344054;
|
| 293 |
+
text-align: center;
|
| 294 |
+
max-width: 900px;
|
| 295 |
+
margin: 0 auto 3rem auto;
|
| 296 |
+
}
|
| 297 |
+
|
| 298 |
+
.introduction-section p {
|
| 299 |
+
margin-bottom: 1rem;
|
| 300 |
+
font-family: Georgia, serif;
|
| 301 |
+
font-size: 1.2em;
|
| 302 |
+
}
|
| 303 |
+
|
| 304 |
+
@media (max-width: 768px) {
|
| 305 |
+
.introduction-section {
|
| 306 |
+
font-size: 1.2rem !important;
|
| 307 |
+
}
|
| 308 |
+
}
|
| 309 |
+
|
| 310 |
+
|
| 311 |
"""
|
| 312 |
|
| 313 |
# Combine any existing CSS with the new enhanced CSS
|