-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (85 loc) · 2.41 KB
/
index.html
File metadata and controls
100 lines (85 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CDN Vinny</title>
<link rel="icon" href="https://cdn.vinnyy.me/logo-i.png">
<link rel="apple-touch-icon" href="https://cdn.vinnyy.me/logo-i.png">
<style>
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');
body {
padding: 0;
margin: 0;
background: #011B10 url(https://cdn.vinnyy.me/general/dots.svg) right top;
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.load span {
font-family: 'Fredericka the Great', cursive;
position: relative;
text-align: center;
text-shadow: -10px 0 50px #b7bf96, 10px 0 50px #b7bf96;
color: #133a1b;
font-weight: bolder;
letter-spacing: 12px;
font-size: 10em;
animation: anim 2s linear infinite;
}
@keyframes anim {
0% {
filter: blur(0);
}
20% {
filter: blur(5px);
}
40% {
filter: blur(0);
}
60% {
filter: blur(0);
}
}
.load span:nth-child(1) {
animation-delay: 0s;
}
.load span:nth-child(2) {
animation-delay: 0.3s;
}
.load span:nth-child(3) {
animation-delay: 0.6s;
}
.load span:nth-child(4) {
animation-delay: 0.9s;
}
.load span:nth-child(5) {
animation-delay: 1.2s;
}
.load span:nth-child(6) {
animation-delay: 1.5s;
}
.load span:nth-child(7) {
animation-delay: 1.8s;
}
.load span:nth-child(8) {
animation-delay: 2.1s;
}
::selection {
color: #011B10;
background: #b7bf96;
}
</style>
</head>
<body>
<div class="center">
<div class="load">
<span>Vinny</span>
</div>
</div>
</body>
</html>