Update app.py
Browse files
app.py
CHANGED
|
@@ -325,6 +325,27 @@ header p {
|
|
| 325 |
transform: scale(1.05);
|
| 326 |
}
|
| 327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 328 |
/* Tabs Section */
|
| 329 |
.tabs {
|
| 330 |
margin: 0 auto;
|
|
@@ -335,13 +356,43 @@ header p {
|
|
| 335 |
max-width: 1200px;
|
| 336 |
}
|
| 337 |
|
| 338 |
-
/*
|
| 339 |
-
|
| 340 |
-
|
|
|
|
|
|
|
|
|
|
| 341 |
border-radius: 12px;
|
| 342 |
-
|
| 343 |
-
|
| 344 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 345 |
}
|
| 346 |
|
| 347 |
/* Footer */
|
|
|
|
| 325 |
transform: scale(1.05);
|
| 326 |
}
|
| 327 |
|
| 328 |
+
/* Pre-Tabs Section */
|
| 329 |
+
.pre-tabs {
|
| 330 |
+
text-align: center;
|
| 331 |
+
padding: 40px 20px;
|
| 332 |
+
background: linear-gradient(135deg, #ffffff, #f9fafb);
|
| 333 |
+
border-top: 5px solid #64b5f6;
|
| 334 |
+
border-bottom: 5px solid #6a1b9a;
|
| 335 |
+
}
|
| 336 |
+
|
| 337 |
+
.pre-tabs h2 {
|
| 338 |
+
font-size: 2.5em;
|
| 339 |
+
color: #333333;
|
| 340 |
+
margin-bottom: 15px;
|
| 341 |
+
}
|
| 342 |
+
|
| 343 |
+
.pre-tabs p {
|
| 344 |
+
font-size: 1.2em;
|
| 345 |
+
color: #555555;
|
| 346 |
+
line-height: 1.8;
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
/* Tabs Section */
|
| 350 |
.tabs {
|
| 351 |
margin: 0 auto;
|
|
|
|
| 356 |
max-width: 1200px;
|
| 357 |
}
|
| 358 |
|
| 359 |
+
/* Post-Tabs Section */
|
| 360 |
+
.post-tabs {
|
| 361 |
+
text-align: center;
|
| 362 |
+
padding: 40px 20px;
|
| 363 |
+
background: linear-gradient(135deg, #64b5f6, #6a1b9a);
|
| 364 |
+
color: #ffffff;
|
| 365 |
border-radius: 12px;
|
| 366 |
+
margin-top: 30px;
|
| 367 |
+
}
|
| 368 |
+
|
| 369 |
+
.post-tabs h2 {
|
| 370 |
+
font-size: 2.5em;
|
| 371 |
+
margin-bottom: 15px;
|
| 372 |
+
}
|
| 373 |
+
|
| 374 |
+
.post-tabs p {
|
| 375 |
+
font-size: 1.2em;
|
| 376 |
+
line-height: 1.8;
|
| 377 |
+
margin-bottom: 20px;
|
| 378 |
+
}
|
| 379 |
+
|
| 380 |
+
.post-tabs a {
|
| 381 |
+
text-decoration: none;
|
| 382 |
+
font-size: 1.1em;
|
| 383 |
+
padding: 15px 30px;
|
| 384 |
+
border-radius: 30px;
|
| 385 |
+
font-weight: bold;
|
| 386 |
+
background: #ffffff;
|
| 387 |
+
color: #6a1b9a;
|
| 388 |
+
transition: transform 0.3s, background 0.3s;
|
| 389 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
| 390 |
+
}
|
| 391 |
+
|
| 392 |
+
.post-tabs a:hover {
|
| 393 |
+
background: #6a1b9a;
|
| 394 |
+
color: #ffffff;
|
| 395 |
+
transform: scale(1.05);
|
| 396 |
}
|
| 397 |
|
| 398 |
/* Footer */
|