Spaces:
Running
Running
Update src/templates/base.html
Browse files- src/templates/base.html +34 -0
src/templates/base.html
CHANGED
|
@@ -295,7 +295,41 @@ input:focus { outline: none; border-color: var(--accent-green); }
|
|
| 295 |
}
|
| 296 |
|
| 297 |
/* --- GLOBAL NAV BUTTON AREA --- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 299 |
|
| 300 |
/* --- GLOBAL FOOTER --- */
|
| 301 |
|
|
|
|
| 295 |
}
|
| 296 |
|
| 297 |
/* --- GLOBAL NAV BUTTON AREA --- */
|
| 298 |
+
.back-nav-container {
|
| 299 |
+
margin: 0px;
|
| 300 |
+
padding: 30px 0 30px 0;
|
| 301 |
+
text-align: center;
|
| 302 |
+
width: 100%;
|
| 303 |
+
box-sizing: border-box;
|
| 304 |
+
}
|
| 305 |
+
|
| 306 |
+
.back-nav-container:empty {
|
| 307 |
+
display: none;
|
| 308 |
+
padding: 0;
|
| 309 |
+
margin: 0;
|
| 310 |
+
border: none;
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
.back-nav-btn {
|
| 314 |
+
display: inline-flex;
|
| 315 |
+
align-items: center;
|
| 316 |
+
gap: 8px;
|
| 317 |
+
background: transparent !important;
|
| 318 |
+
border: 1px solid var(--accent-green, #10b981) !important;
|
| 319 |
+
color: var(--accent-green, #10b981) !important;
|
| 320 |
+
padding: 10px 20px;
|
| 321 |
+
border-radius: 8px;
|
| 322 |
+
text-decoration: none;
|
| 323 |
+
font-weight: 700;
|
| 324 |
+
font-size: 0.8rem;
|
| 325 |
+
transition: all 0.2s ease;
|
| 326 |
+
margin-bottom: 5px;
|
| 327 |
+
}
|
| 328 |
|
| 329 |
+
.back-nav-btn:hover {
|
| 330 |
+
background: rgba(16, 185, 129, 0.1) !important;
|
| 331 |
+
transform: translateY(-2px);
|
| 332 |
+
}
|
| 333 |
|
| 334 |
/* --- GLOBAL FOOTER --- */
|
| 335 |
|