2 BTC should have a pulsing glow animation
Browse files
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;
|