Lonrrr commited on
Commit
1dd68cd
·
verified ·
1 Parent(s): 9b2669a

bring the taskbar at the bottom to the forefront of the app.

Browse files

remove the hover animations from the containers that makes them tilt diagonally on all pages.

Files changed (4) hide show
  1. charts.html +3 -4
  2. explore.html +4 -5
  3. index.html +2 -3
  4. profile.html +4 -4
charts.html CHANGED
@@ -71,7 +71,7 @@
71
  transition: all 0.3s ease;
72
  }
73
  .chart-item:hover {
74
- transform: translateX(5px);
75
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
76
  }
77
  </style>
@@ -259,9 +259,8 @@
259
  </div>
260
  </main>
261
  </div>
262
-
263
- <!-- Bottom Navigation -->
264
- <div class="fixed bottom-0 left-0 right-0 bg-primary/80 border-t border-secondary/20 backdrop-blur-lg">
265
  <div class="container mx-auto px-4 py-3">
266
  <div class="flex justify-around">
267
  <a href="index.html" class="flex flex-col items-center opacity-70 hover:opacity-100">
 
71
  transition: all 0.3s ease;
72
  }
73
  .chart-item:hover {
74
+ transform: translateY(-5px);
75
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
76
  }
77
  </style>
 
259
  </div>
260
  </main>
261
  </div>
262
+ <!-- Bottom Navigation -->
263
+ <div class="fixed bottom-0 left-0 right-0 bg-primary/80 border-t border-secondary/20 backdrop-blur-lg z-50">
 
264
  <div class="container mx-auto px-4 py-3">
265
  <div class="flex justify-around">
266
  <a href="index.html" class="flex flex-col items-center opacity-70 hover:opacity-100">
explore.html CHANGED
@@ -52,10 +52,10 @@
52
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
53
  }
54
  .explore-card:hover {
55
- transform: translateY(-5px) rotate(1deg);
56
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
57
  }
58
- @keyframes pulse {
59
  0% { opacity: 0.8; }
60
  100% { opacity: 1; }
61
  }
@@ -221,9 +221,8 @@
221
  </div>
222
  </main>
223
  </div>
224
-
225
- <!-- Bottom Navigation -->
226
- <div class="fixed bottom-0 left-0 right-0 bg-primary/80 border-t border-secondary/20 backdrop-blur-lg">
227
  <div class="container mx-auto px-4 py-3">
228
  <div class="flex justify-around">
229
  <a href="index.html" class="flex flex-col items-center opacity-70 hover:opacity-100">
 
52
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
53
  }
54
  .explore-card:hover {
55
+ transform: translateY(-5px);
56
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
57
  }
58
+ @keyframes pulse {
59
  0% { opacity: 0.8; }
60
  100% { opacity: 1; }
61
  }
 
221
  </div>
222
  </main>
223
  </div>
224
+ <!-- Bottom Navigation -->
225
+ <div class="fixed bottom-0 left-0 right-0 bg-primary/80 border-t border-secondary/20 backdrop-blur-lg z-50">
 
226
  <div class="container mx-auto px-4 py-3">
227
  <div class="flex justify-around">
228
  <a href="index.html" class="flex flex-col items-center opacity-70 hover:opacity-100">
index.html CHANGED
@@ -59,7 +59,7 @@
59
  transition: transform 0.3s ease, box-shadow 0.3s ease;
60
  }
61
  .card-hover:hover {
62
- transform: translateY(-5px) rotate(1deg);
63
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
64
  }
65
  </style>
@@ -244,9 +244,8 @@
244
  </div>
245
  </div>
246
  </main>
247
-
248
  <!-- Bottom Navigation -->
249
- <div class="fixed bottom-0 left-0 right-0 bg-primary/80 border-t border-secondary/20 backdrop-blur-lg">
250
  <div class="container mx-auto px-4 py-3">
251
  <div class="flex justify-around">
252
  <a href="#" class="flex flex-col items-center text-secondary">
 
59
  transition: transform 0.3s ease, box-shadow 0.3s ease;
60
  }
61
  .card-hover:hover {
62
+ transform: translateY(-5px);
63
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
64
  }
65
  </style>
 
244
  </div>
245
  </div>
246
  </main>
 
247
  <!-- Bottom Navigation -->
248
+ <div class="fixed bottom-0 left-0 right-0 bg-primary/80 border-t border-secondary/20 backdrop-blur-lg z-50">
249
  <div class="container mx-auto px-4 py-3">
250
  <div class="flex justify-around">
251
  <a href="#" class="flex flex-col items-center text-secondary">
profile.html CHANGED
@@ -55,8 +55,9 @@
55
  .vault-item:hover {
56
  background: linear-gradient(90deg, rgba(30, 30, 30, 0.6), rgba(30, 30, 30, 0.8));
57
  box-shadow: 0 0 10px rgba(127, 255, 212, 0.2);
 
58
  }
59
- @keyframes pulse {
60
  0% { opacity: 0.8; }
61
  100% { opacity: 1; }
62
  }
@@ -268,9 +269,8 @@
268
  </div>
269
  </div>
270
  </div>
271
-
272
- <!-- Bottom Navigation -->
273
- <div class="fixed bottom-0 left-0 right-0 bg-primary/80 border-t border-secondary/20 backdrop-blur-lg">
274
  <div class="container mx-auto px-4 py-3">
275
  <div class="flex justify-around">
276
  <a href="index.html" class="flex flex-col items-center opacity-70 hover:opacity-100">
 
55
  .vault-item:hover {
56
  background: linear-gradient(90deg, rgba(30, 30, 30, 0.6), rgba(30, 30, 30, 0.8));
57
  box-shadow: 0 0 10px rgba(127, 255, 212, 0.2);
58
+ transform: translateY(-2px);
59
  }
60
+ @keyframes pulse {
61
  0% { opacity: 0.8; }
62
  100% { opacity: 1; }
63
  }
 
269
  </div>
270
  </div>
271
  </div>
272
+ <!-- Bottom Navigation -->
273
+ <div class="fixed bottom-0 left-0 right-0 bg-primary/80 border-t border-secondary/20 backdrop-blur-lg z-50">
 
274
  <div class="container mx-auto px-4 py-3">
275
  <div class="flex justify-around">
276
  <a href="index.html" class="flex flex-col items-center opacity-70 hover:opacity-100">