Spaces:
Running
Running
Update index.html
Browse files- index.html +26 -0
index.html
CHANGED
|
@@ -231,6 +231,7 @@
|
|
| 231 |
border-bottom: 2px solid var(--card-border);
|
| 232 |
padding-bottom: 2%;
|
| 233 |
margin-bottom: 4%;
|
|
|
|
| 234 |
}
|
| 235 |
.card-header h2 {
|
| 236 |
margin: 0;
|
|
@@ -288,6 +289,31 @@
|
|
| 288 |
text-align: center;
|
| 289 |
}
|
| 290 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 291 |
/* Responsive adjustments for the top bar */
|
| 292 |
@media (max-width: 900px) {
|
| 293 |
#top-bar {
|
|
|
|
| 231 |
border-bottom: 2px solid var(--card-border);
|
| 232 |
padding-bottom: 2%;
|
| 233 |
margin-bottom: 4%;
|
| 234 |
+
flex-shrink: 0;
|
| 235 |
}
|
| 236 |
.card-header h2 {
|
| 237 |
margin: 0;
|
|
|
|
| 289 |
text-align: center;
|
| 290 |
}
|
| 291 |
|
| 292 |
+
.card-footer {
|
| 293 |
+
margin-top: auto; /* Pushes footer to the bottom */
|
| 294 |
+
padding-top: 2%;
|
| 295 |
+
flex-shrink: 0;
|
| 296 |
+
height: 5vh;
|
| 297 |
+
position: relative;
|
| 298 |
+
display: flex;
|
| 299 |
+
align-items: center;
|
| 300 |
+
justify-content: space-between;
|
| 301 |
+
font-size: 3vh;
|
| 302 |
+
font-family: 'Playfair Display', serif;
|
| 303 |
+
}
|
| 304 |
+
.card-footer .cancan-bar {
|
| 305 |
+
position: absolute;
|
| 306 |
+
bottom: 0;
|
| 307 |
+
left: 0;
|
| 308 |
+
width: 100%;
|
| 309 |
+
height: 100%;
|
| 310 |
+
z-index: 0;
|
| 311 |
+
}
|
| 312 |
+
.card-footer-item {
|
| 313 |
+
z-index: 1;
|
| 314 |
+
text-shadow: 0 0 5px var(--bg-color);
|
| 315 |
+
}
|
| 316 |
+
|
| 317 |
/* Responsive adjustments for the top bar */
|
| 318 |
@media (max-width: 900px) {
|
| 319 |
#top-bar {
|