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