Update app.py
Browse files
app.py
CHANGED
|
@@ -222,13 +222,13 @@ header p {
|
|
| 222 |
}
|
| 223 |
|
| 224 |
.pre-tabs h2 {
|
| 225 |
-
font-size: 2.
|
| 226 |
color: #333333;
|
| 227 |
margin-bottom: 15px;
|
| 228 |
}
|
| 229 |
|
| 230 |
.pre-tabs p {
|
| 231 |
-
font-size: 1.
|
| 232 |
color: #555555;
|
| 233 |
line-height: 1.8;
|
| 234 |
}
|
|
@@ -303,29 +303,35 @@ footer p {
|
|
| 303 |
line-height: 1.6;
|
| 304 |
margin-bottom: 20px;
|
| 305 |
}
|
| 306 |
-
|
| 307 |
-
|
| 308 |
display: flex;
|
| 309 |
justify-content: center;
|
| 310 |
-
gap: 15px;
|
| 311 |
-
margin-top: 20px;
|
| 312 |
}
|
| 313 |
|
| 314 |
-
|
|
|
|
| 315 |
text-decoration: none;
|
| 316 |
-
|
|
|
|
| 317 |
padding: 10px 20px;
|
| 318 |
-
border-radius:
|
|
|
|
| 319 |
font-weight: bold;
|
| 320 |
-
|
| 321 |
-
|
| 322 |
-
transition: transform 0.3s, background 0.3s;
|
| 323 |
}
|
| 324 |
|
| 325 |
-
|
| 326 |
-
background: #
|
| 327 |
-
|
| 328 |
-
transform:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 329 |
}
|
| 330 |
"""
|
| 331 |
|
|
@@ -486,7 +492,7 @@ demo.launch()
|
|
| 486 |
# }
|
| 487 |
|
| 488 |
# header p {
|
| 489 |
-
# font-size: 1.
|
| 490 |
# line-height: 1.8;
|
| 491 |
# }
|
| 492 |
|
|
@@ -724,7 +730,7 @@ demo.launch()
|
|
| 724 |
# # Post-Tabs Section
|
| 725 |
# gr.Markdown("""
|
| 726 |
# <section class="post-tabs">
|
| 727 |
-
# <
|
| 728 |
# <p>
|
| 729 |
# Submit your predictions today and make your mark in advancing mobile AI technologies.
|
| 730 |
# Show the world what your model can achieve!
|
|
@@ -736,7 +742,7 @@ demo.launch()
|
|
| 736 |
# # Footer Section
|
| 737 |
# gr.Markdown("""
|
| 738 |
# <footer>
|
| 739 |
-
# <
|
| 740 |
# <p>
|
| 741 |
# Follow us on social media or contact us for any queries. Let's shape the future of AI together!
|
| 742 |
# </p>
|
|
|
|
| 222 |
}
|
| 223 |
|
| 224 |
.pre-tabs h2 {
|
| 225 |
+
font-size: 2.9em;
|
| 226 |
color: #333333;
|
| 227 |
margin-bottom: 15px;
|
| 228 |
}
|
| 229 |
|
| 230 |
.pre-tabs p {
|
| 231 |
+
font-size: 1.6em;
|
| 232 |
color: #555555;
|
| 233 |
line-height: 1.8;
|
| 234 |
}
|
|
|
|
| 303 |
line-height: 1.6;
|
| 304 |
margin-bottom: 20px;
|
| 305 |
}
|
| 306 |
+
/* Link Styling */
|
| 307 |
+
.social-links {
|
| 308 |
display: flex;
|
| 309 |
justify-content: center;
|
| 310 |
+
gap: 15px; /* Space between links */
|
|
|
|
| 311 |
}
|
| 312 |
|
| 313 |
+
.social-link {
|
| 314 |
+
display: inline-block;
|
| 315 |
text-decoration: none;
|
| 316 |
+
color: #ffffff;
|
| 317 |
+
background-color: #6a1b9a; /* Purple button background */
|
| 318 |
padding: 10px 20px;
|
| 319 |
+
border-radius: 30px;
|
| 320 |
+
font-size: 16px;
|
| 321 |
font-weight: bold;
|
| 322 |
+
transition: all 0.3s ease;
|
| 323 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
| 324 |
}
|
| 325 |
|
| 326 |
+
.social-link:hover {
|
| 327 |
+
background-color: #8c52d3; /* Darker shade on hover */
|
| 328 |
+
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
|
| 329 |
+
transform: translateY(-2px);
|
| 330 |
+
}
|
| 331 |
+
|
| 332 |
+
.social-link:active {
|
| 333 |
+
transform: translateY(1px);
|
| 334 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
|
| 335 |
}
|
| 336 |
"""
|
| 337 |
|
|
|
|
| 492 |
# }
|
| 493 |
|
| 494 |
# header p {
|
| 495 |
+
# font-size: 1.7em;
|
| 496 |
# line-height: 1.8;
|
| 497 |
# }
|
| 498 |
|
|
|
|
| 730 |
# # Post-Tabs Section
|
| 731 |
# gr.Markdown("""
|
| 732 |
# <section class="post-tabs">
|
| 733 |
+
# <h3>Ready to Compete?</h3>
|
| 734 |
# <p>
|
| 735 |
# Submit your predictions today and make your mark in advancing mobile AI technologies.
|
| 736 |
# Show the world what your model can achieve!
|
|
|
|
| 742 |
# # Footer Section
|
| 743 |
# gr.Markdown("""
|
| 744 |
# <footer>
|
| 745 |
+
# <h3>Stay Connected</h3>
|
| 746 |
# <p>
|
| 747 |
# Follow us on social media or contact us for any queries. Let's shape the future of AI together!
|
| 748 |
# </p>
|