ProjectGenesis commited on
Commit
cb47367
·
verified ·
1 Parent(s): fa0a080

2 BTC should have a pulsing glow animation

Browse files
Files changed (1) hide show
  1. style.css +10 -1
style.css CHANGED
@@ -3,10 +3,19 @@ body {
3
  font-family: 'Inter', sans-serif;
4
  color: white;
5
  }
6
-
7
  .text-orange-500 {
8
  color: #f97316;
9
  text-shadow: 0 0 8px rgba(249, 115, 22, 0.7);
 
 
 
 
 
 
 
 
 
 
10
  }
11
  h1, h2, h3, .countdown-timer {
12
  font-family: 'Orbitron', sans-serif;
 
3
  font-family: 'Inter', sans-serif;
4
  color: white;
5
  }
 
6
  .text-orange-500 {
7
  color: #f97316;
8
  text-shadow: 0 0 8px rgba(249, 115, 22, 0.7);
9
+ animation: pulse-glow-orange 2s infinite ease-in-out alternate;
10
+ }
11
+
12
+ @keyframes pulse-glow-orange {
13
+ 0% {
14
+ text-shadow: 0 0 8px rgba(249, 115, 22, 0.7);
15
+ }
16
+ 100% {
17
+ text-shadow: 0 0 20px rgba(249, 115, 22, 0.9);
18
+ }
19
  }
20
  h1, h2, h3, .countdown-timer {
21
  font-family: 'Orbitron', sans-serif;