-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathredirect.css
More file actions
45 lines (38 loc) · 873 Bytes
/
Copy pathredirect.css
File metadata and controls
45 lines (38 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, rgba(249, 250, 251, 0.9) 0%, rgba(228, 232, 255, 0.9) 100%);
}
.dark body {
background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}
@keyframes pulse-ring {
0% {
transform: scale(0.8);
opacity: 0.8;
}
50% {
transform: scale(1);
opacity: 0.5;
}
100% {
transform: scale(0.8);
opacity: 0.8;
}
}
.pulse-ring {
animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.redirect-container {
animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.countdown-text {
animation: fadeInOut 1.5s ease-in-out infinite;
}
@keyframes fadeInOut {
0%, 100% { opacity: 0.7; }
50% { opacity: 1; }
}