Update app.py
Browse files
app.py
CHANGED
@@ -393,7 +393,7 @@ color: blue;
|
|
393 |
|
394 |
|
395 |
/* overview */
|
396 |
-
|
397 |
padding: 30px;
|
398 |
border-radius: 12px;
|
399 |
background: linear-gradient(135deg, #ffffff, #f9f9ff);
|
@@ -401,36 +401,36 @@ div#Overview {
|
|
401 |
max-width: 900px;
|
402 |
margin: 20px auto;
|
403 |
}
|
404 |
-
|
405 |
font-size: 2.8em;
|
406 |
-
color: #6a1b9a;
|
407 |
text-align: center;
|
408 |
margin-bottom: 20px;
|
409 |
}
|
410 |
-
|
411 |
-
font-size: 1.
|
412 |
color: #333333;
|
413 |
line-height: 1.8;
|
414 |
margin-bottom: 15px;
|
415 |
}
|
416 |
-
|
417 |
font-size: 1.2em;
|
418 |
color: #555555;
|
419 |
margin: 20px 0;
|
420 |
padding-left: 40px;
|
421 |
}
|
422 |
-
|
423 |
margin-bottom: 10px;
|
424 |
}
|
425 |
-
|
426 |
color: #6a1b9a;
|
427 |
font-size: 1.5em;
|
428 |
}
|
429 |
-
|
430 |
color: #6a1b9a;
|
431 |
text-decoration: underline;
|
432 |
}
|
433 |
-
|
434 |
color: #8c52d3;
|
435 |
}
|
436 |
"""
|
|
|
393 |
|
394 |
|
395 |
/* overview */
|
396 |
+
#Overview {
|
397 |
padding: 30px;
|
398 |
border-radius: 12px;
|
399 |
background: linear-gradient(135deg, #ffffff, #f9f9ff);
|
|
|
401 |
max-width: 900px;
|
402 |
margin: 20px auto;
|
403 |
}
|
404 |
+
#Overview h2 {
|
405 |
font-size: 2.8em;
|
406 |
+
color: #6a1b9a !important;
|
407 |
text-align: center;
|
408 |
margin-bottom: 20px;
|
409 |
}
|
410 |
+
#Overview p {
|
411 |
+
font-size: 1.5em;
|
412 |
color: #333333;
|
413 |
line-height: 1.8;
|
414 |
margin-bottom: 15px;
|
415 |
}
|
416 |
+
#Overview ul, #Overview ol {
|
417 |
font-size: 1.2em;
|
418 |
color: #555555;
|
419 |
margin: 20px 0;
|
420 |
padding-left: 40px;
|
421 |
}
|
422 |
+
#Overview ul li, #Overview ol li {
|
423 |
margin-bottom: 10px;
|
424 |
}
|
425 |
+
#Overview ul li::marker, Overview ol li::marker {
|
426 |
color: #6a1b9a;
|
427 |
font-size: 1.5em;
|
428 |
}
|
429 |
+
Overview a {
|
430 |
color: #6a1b9a;
|
431 |
text-decoration: underline;
|
432 |
}
|
433 |
+
Overview a:hover {
|
434 |
color: #8c52d3;
|
435 |
}
|
436 |
"""
|