-
Notifications
You must be signed in to change notification settings - Fork 133
/
index.html
108 lines (98 loc) · 2.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GlaceYT</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
font-family: 'Press Start 2P', cursive;
color: #00ff00;
text-align: center;
}
h1, h2 {
margin: 0;
padding: 0;
animation: flicker 1.5s infinite alternate;
}
h1 {
font-size: 3em;
}
h2 {
font-size: 1.5em;
}
@keyframes flicker {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.hacking-theme {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
pointer-events: none;
}
.hacking-theme div {
position: absolute;
width: 2px;
height: 100%;
background: #00ff00;
opacity: 0;
animation: moveAndFade 5s linear infinite;
}
@keyframes moveAndFade {
0% {
transform: translateY(-100%);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: translateY(100%);
opacity: 0;
}
}
.hacking-theme div:nth-child(odd) {
animation-duration: 4s;
}
.hacking-theme div:nth-child(even) {
animation-duration: 6s;
}
</style>
</head>
<body>
<div class="content">
<h1>GlaceYT</h1>
<h2>All in One Bot</h2>
</div>
<div class="hacking-theme">
<div style="left: 10%;"></div>
<div style="left: 20%;"></div>
<div style="left: 30%;"></div>
<div style="left: 40%;"></div>
<div style="left: 50%;"></div>
<div style="left: 60%;"></div>
<div style="left: 70%;"></div>
<div style="left: 80%;"></div>
<div style="left: 90%;"></div>
</div>
</body>
</html>