-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
170 lines (143 loc) · 4.51 KB
/
404.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@font-face {
font-family: 'budmojigglish';
src: url('fonts/budmo-jigglish.eot');
src: url('fonts/budmo-jigglish.eot?#iefix') format('embedded-opentype'),
url('fonts/budmo-jigglish.woff2') format('woff2'),
url('fonts/budmo-jigglish.woff') format('woff'),
url('fonts/budmo-jigglish.ttf') format('truetype'),
url('fonts/budmo-jigglish.svg#budmojigglish') format('svg');
font-weight: normal;
font-style: normal;
}
.light-up-letters {
display: inline-block;
font-family: 'budmojigglish';
font-size: 80px;
font-weight: 100;
color: red;
}
.light-up-letters {
text-shadow: 0 0 5px red, 0 0 10px red, 0 0 85px red, 0 0 85px red, 0 0 85px red;
}
.light-up-letters .fade {
-webkit-animation: fade 5s linear infinite;
animation: fade 5s linear infinite;
}
.light-up-letters .flicker {
-webkit-animation: flicker 6s 1s linear infinite;
animation: flicker 6s 1s linear infinite;
}
.light-up-letters .sparkle {
-webkit-animation: sparkle 3s 3s linear infinite;
animation: sparkle 3s 3s linear infinite;
}
@-webkit-keyframes fade {
0%,9%,11%,13%,15%,41%,43%,45% {
text-shadow: 0 0 5px red, 0 0 10px red, 0 0 85px red, 0 0 85px red, 0 0 85px red;
opacity: 1;
}
10%,12%,14%,42%,44% {
opacity: 0.6;
text-shadow: none;
}
}
@keyframes fade {
0%,9%,11%,13%,15%,41%,43%,45% {
text-shadow: 0 0 5px red, 0 0 10px red, 0 0 85px red, 0 0 85px red, 0 0 85px red;
opacity: 1;
}
10%,12%,14%,42%,44% {
opacity: 0.6;
text-shadow: none;
}
}
@-webkit-keyframes flicker {
51% {
text-shadow: 0 0 5px red, 0 0 10px red, 0 0 85px red, 0 0 85px red, 0 0 85px red;
opacity: 1;
}
0%,50%,52%,100% {
opacity: 0.6;
text-shadow: none;
}
}
@keyframes flicker {
51% {
text-shadow: 0 0 5px red, 0 0 10px red, 0 0 85px red, 0 0 85px red, 0 0 85px red;
opacity: 1;
}
0%,50%,52%,100% {
opacity: 0.6;
text-shadow: none;
}
}
@-webkit-keyframes sparkle {
0%,9%,11%,13%,15%,41%,43%,45% {
text-shadow: 0 0 5px red, 0 0 10px red, 0 0 85px red, 0 0 85px red, 0 0 85px red;
opacity: 1;
}
10%,12%,14%,42%,44% {
opacity: 0.6;
text-shadow: none;
}
}
@keyframes sparkle {
0%,9%,11%,13%,15%,41%,43%,45% {
text-shadow: 0 0 5px red, 0 0 10px red, 0 0 85px red, 0 0 85px red, 0 0 85px red;
opacity: 1;
}
10%,12%,14%,42%,44% {
opacity: 0.6;
text-shadow: none;
}
}
* {
line-height: 1.2;
margin: 0;
}
html {
color: #888;
display: table;
font-family: sans-serif;
height: 100%;
text-align: center;
width: 100%;
}
body {
display: table-cell;
vertical-align: middle;
margin: 2em auto;
background-color: #101010;
}
h1 {
color: #555;
font-size: 2em;
font-weight: 400;
}
p {
margin: 0 auto;
width: 280px;
}
@media only screen and (max-width: 280px) {
body, p {
width: 95%;
}
h1 {
font-size: 1.5em;
margin: 0 0 0.3em;
}
}
</style>
</head>
<body>
<div class="light-up-letters">40<span class="fade">4</span> err<span class="flicker">o</span>r p<span class="sparkle">a</span>ge</div>
<p>Sorry, but the page you were trying to view does not exist.</p>
</body>
</html>