heisbuba commited on
Commit
93e4419
·
verified ·
1 Parent(s): 9547bb4

Update src/templates/base.html

Browse files
Files changed (1) hide show
  1. src/templates/base.html +25 -8
src/templates/base.html CHANGED
@@ -231,31 +231,44 @@ input:focus { outline: none; border-color: var(--accent-green); }
231
 
232
  /* --- GLOBAL NAV BUTTON AREA --- */
233
  .back-nav-container {
234
- margin-top: 60px;
235
  padding-top: 30px;
236
- paddding-bottom: 40px;
237
  border-top: 1px solid var(--border);
238
  text-align: center;
239
  }
240
  .back-nav-btn { margin-bottom: 5px; }
241
 
242
  /* --- GLOBAL FOOTER --- */
 
243
  .footer {
244
- background: var(--bg-card);
245
  border-top: 1px solid var(--border);
246
- padding: 30px 20px;
247
  margin-top: auto;
248
  display: flex;
249
  justify-content: space-between;
250
  align-items: center;
251
- font-size: 0.85rem;
252
  color: var(--text-dim);
 
 
 
 
 
 
 
 
253
  }
254
- .credit a { color: var(--accent-green); font-weight: 600; }
255
- .credit a:hover { text-decoration: underline; }
256
 
 
257
  @media (max-width: 600px) {
258
- .footer { flex-direction: column; gap: 15px; text-align: center; }
 
 
 
 
 
259
  }
260
  </style>
261
  {% block extra_css %}{% endblock %}
@@ -330,6 +343,10 @@ input:focus { outline: none; border-color: var(--accent-green); }
330
  </div>
331
  </main>
332
 
 
 
 
 
333
  <footer class="footer">
334
  <div>
335
  © 2025 CryptoVAT <span style="opacity:0.5;">v4.1</span>
 
231
 
232
  /* --- GLOBAL NAV BUTTON AREA --- */
233
  .back-nav-container {
234
+ margin: 60 0 30px 0px;
235
  padding-top: 30px;
 
236
  border-top: 1px solid var(--border);
237
  text-align: center;
238
  }
239
  .back-nav-btn { margin-bottom: 5px; }
240
 
241
  /* --- GLOBAL FOOTER --- */
242
+
243
  .footer {
244
+ background: transparent;
245
  border-top: 1px solid var(--border);
246
+ padding: 40px 5%;
247
  margin-top: auto;
248
  display: flex;
249
  justify-content: space-between;
250
  align-items: center;
251
+ font-size: 0.9rem;
252
  color: var(--text-dim);
253
+ font-weight: 500;
254
+ }
255
+
256
+ .footer .credit a {
257
+ color: var(--accent-green);
258
+ font-weight: 600;
259
+ text-decoration: none;
260
+ transition: opacity 0.2s;
261
  }
262
+ .footer .credit a:hover { opacity: 0.8; }
 
263
 
264
+ /* Mobile Stack */
265
  @media (max-width: 600px) {
266
+ .footer {
267
+ flex-direction: column;
268
+ gap: 20px;
269
+ text-align: center;
270
+ padding-bottom: 30px;
271
+ }
272
  }
273
  </style>
274
  {% block extra_css %}{% endblock %}
 
343
  </div>
344
  </main>
345
 
346
+ <footer style="text-align: center; padding: 40px 20px; color: var(--text-gray); font-size: 0.9rem; border-top: 1px solid var(--border); margin-top: 50px;">
347
+ <p>&copy; 2025 CryptoVAT. All rights reserved.</p>
348
+ </footer>
349
+
350
  <footer class="footer">
351
  <div>
352
  © 2025 CryptoVAT <span style="opacity:0.5;">v4.1</span>