-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
137 lines (126 loc) · 3.02 KB
/
Copy pathstyle.css
File metadata and controls
137 lines (126 loc) · 3.02 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
font-family: 'Arial', sans-serif;
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
gap: 60px;
}
/* Eyes Animation */
.eyes-container {
display: flex;
gap: 80px;
animation: glowPulse 3s ease-in-out infinite;
}
.eye {
width: 180px;
height: 180px;
background: radial-gradient(circle at 30% 30%, #ff0000, #cc0000);
border-radius: 50%;
position: relative;
border: 3px solid #ff0000;
box-shadow: 0 0 15px #ff0000, inset 0 0 15px rgba(255, 0, 0, 0.5);
}
.pupil {
width: 60px;
height: 60px;
background: #000000;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: blink 4s ease-in-out infinite;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}
/* Glow pulse animation for eyes */
@keyframes glowPulse {
0%, 100% {
filter: brightness(1) drop-shadow(0 0 10px #ff0000);
}
50% {
filter: brightness(1.2) drop-shadow(0 0 20px #ff0000);
}
}
/* Blinking animation */
@keyframes blink {
0%, 15%, 85%, 100% {
height: 60px;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}
20%, 80% {
height: 30px;
}
25%, 75% {
height: 5px;
}
30%, 70% {
height: 0px;
}
40%, 60% {
height: 0px;
}
}
/* Text Animation */
.text-container {
font-size: 48px;
font-weight: bold;
letter-spacing: 5px;
text-align: center;
color: #ff0000;
text-shadow: 0 0 10px #ff0000, 0 0 20px #cc0000, 0 0 30px #990000;
display: flex;
justify-content: center;
min-height: 60px;
}
.letter {
display: inline-block;
animation: textFade 6s ease-in-out infinite;
min-width: 15px;
}
/* Each letter gets a staggered animation */
.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.3s; }
.letter:nth-child(3) { animation-delay: 0.6s; }
.letter:nth-child(4) { animation-delay: 0.9s; }
.letter:nth-child(5) { animation-delay: 1.2s; }
.letter:nth-child(6) { animation-delay: 1.5s; }
.letter:nth-child(7) { animation-delay: 1.8s; }
.letter:nth-child(8) { animation-delay: 2.1s; }
.letter:nth-child(9) { animation-delay: 2.4s; }
.letter:nth-child(10) { animation-delay: 2.7s; }
.letter:nth-child(11) { animation-delay: 3s; }
.letter:nth-child(12) { animation-delay: 3.3s; }
.letter:nth-child(13) { animation-delay: 3.6s; }
/* Text fade animation - disappear letter by letter, then reappear */
@keyframes textFade {
0% {
opacity: 0;
transform: scale(0.5);
}
5%, 45% {
opacity: 1;
transform: scale(1);
}
50%, 95% {
opacity: 0;
transform: scale(0.5);
}
100% {
opacity: 0;
transform: scale(0.5);
}
}