-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (94 loc) · 1.6 KB
/
styles.css
File metadata and controls
103 lines (94 loc) · 1.6 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: "Arial", sans-serif;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
background-size: 400% 400%;
animation: gradientShift 10s ease infinite;
color: white;
text-align: center;
overflow: hidden;
}
h1 {
font-size: 4rem;
margin-bottom: 1rem;
animation: bounce 1.5s infinite;
color: #ffffff;
text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}
p {
font-size: 1.3rem;
margin-bottom: 1.5rem;
opacity: 0.8;
color: #b0c4de;
}
.loader {
border: 8px solid rgba(255, 255, 255, 0.2);
border-top: 8px solid #00d9ff;
border-radius: 50%;
width: 70px;
height: 70px;
animation: spin 1.2s linear infinite, glow 1.5s ease-in-out infinite alternate;
margin: 0 auto;
}
@keyframes gradientShift {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes bounce {
0%,
20%,
50%,
80%,
100% {
transform: translateY(0);
}
40% {
transform: translateY(-30px);
}
60% {
transform: translateY(-15px);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes glow {
0% {
box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}
100% {
box-shadow: 0 0 30px rgba(0, 217, 255, 1);
}
}
.redirect-container {
animation: fadeOut 5s ease-out;
}
@keyframes fadeOut {
0% {
opacity: 1;
}
90% {
opacity: 0.1;
}
100% {
opacity: 0;
transform: scale(0.9);
}
}