ProjectGenesis commited on
Commit
4f4dd80
·
verified ·
1 Parent(s): 4b90e1e

change "HALL OF FAME" text to neon-orange-glow - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +23 -8
index.html CHANGED
@@ -92,6 +92,21 @@
92
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5);
93
  }
94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  .gradient-btn {
96
  background: linear-gradient(45deg, #FFA500, #FFD700);
97
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.7);
@@ -255,9 +270,9 @@
255
 
256
  <!-- User Stats Panel -->
257
  <section class="mb-10">
258
- <h3 class="text-2xl font-bold text-white mb-6 flex items-center">
259
  <i class="fas fa-chart-line text-neon-yellow mr-3"></i>
260
- YOUR TOURNAMENT STATS
261
  </h3>
262
 
263
  <div class="grid grid-cols-1 md:grid-cols-4 gap-4 stats-grid">
@@ -316,9 +331,9 @@
316
  <!-- Leaderboard Module -->
317
  <section class="mb-10">
318
  <div class="flex justify-between items-center mb-6">
319
- <h3 class="text-2xl font-bold text-white flex items-center">
320
  <i class="fas fa-trophy text-neon-yellow mr-3"></i>
321
- LEADERBOARD
322
  </h3>
323
  <div class="flex items-center">
324
  <span class="text-gray-400 mr-3">Your position: #27</span>
@@ -439,9 +454,9 @@
439
  <!-- Tournament Carousel -->
440
  <section class="mb-10">
441
  <div class="flex justify-between items-center mb-6">
442
- <h3 class="text-2xl font-bold text-white flex items-center">
443
  <i class="fas fa-fire text-neon-orange mr-3"></i>
444
- ACTIVE TOURNAMENTS
445
  </h3>
446
  <div class="flex space-x-2">
447
  <button class="px-4 py-2 rounded-full bg-neon-yellow text-dark-bg font-bold">LIVE</button>
@@ -581,9 +596,9 @@
581
 
582
  <!-- Hall of Fame -->
583
  <section class="mb-10">
584
- <h3 class="text-2xl font-bold text-white mb-6 flex items-center">
585
  <i class="fas fa-medal text-neon-yellow mr-3"></i>
586
- HALL OF FAME
587
  </h3>
588
 
589
  <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
 
92
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5);
93
  }
94
 
95
+ .neon-orange-glow {
96
+ color: white;
97
+ text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #FFA500, 0 0 20px #FFA500;
98
+ animation: neon-orange-pulse 1.5s ease-in-out infinite alternate;
99
+ }
100
+
101
+ @keyframes neon-orange-pulse {
102
+ from {
103
+ text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #FFA500, 0 0 20px #FFA500;
104
+ }
105
+ to {
106
+ text-shadow: 0 0 10px #fff, 0 0 15px #FFA500, 0 0 20px #FFA500, 0 0 25px #FFA500;
107
+ }
108
+ }
109
+
110
  .gradient-btn {
111
  background: linear-gradient(45deg, #FFA500, #FFD700);
112
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.7);
 
270
 
271
  <!-- User Stats Panel -->
272
  <section class="mb-10">
273
+ <h3 class="text-2xl font-bold mb-6 flex items-center">
274
  <i class="fas fa-chart-line text-neon-yellow mr-3"></i>
275
+ <span class="neon-orange-glow">YOUR TOURNAMENT STATS</span>
276
  </h3>
277
 
278
  <div class="grid grid-cols-1 md:grid-cols-4 gap-4 stats-grid">
 
331
  <!-- Leaderboard Module -->
332
  <section class="mb-10">
333
  <div class="flex justify-between items-center mb-6">
334
+ <h3 class="text-2xl font-bold text-neon-yellow flex items-center">
335
  <i class="fas fa-trophy text-neon-yellow mr-3"></i>
336
+ <span class="neon-orange-glow">LEADERBOARD</span>
337
  </h3>
338
  <div class="flex items-center">
339
  <span class="text-gray-400 mr-3">Your position: #27</span>
 
454
  <!-- Tournament Carousel -->
455
  <section class="mb-10">
456
  <div class="flex justify-between items-center mb-6">
457
+ <h3 class="text-2xl font-bold text-neon-yellow flex items-center">
458
  <i class="fas fa-fire text-neon-orange mr-3"></i>
459
+ <span class="neon-orange-glow">ACTIVE TOURNAMENTS</span>
460
  </h3>
461
  <div class="flex space-x-2">
462
  <button class="px-4 py-2 rounded-full bg-neon-yellow text-dark-bg font-bold">LIVE</button>
 
596
 
597
  <!-- Hall of Fame -->
598
  <section class="mb-10">
599
+ <h3 class="text-2xl font-bold mb-6 flex items-center">
600
  <i class="fas fa-medal text-neon-yellow mr-3"></i>
601
+ <span class="neon-orange-glow">HALL OF FAME</span>
602
  </h3>
603
 
604
  <div class="grid grid-cols-1 md:grid-cols-3 gap-6">