-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
246 lines (219 loc) · 4.62 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>404 Not Found</title>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
</head>
<body>
<div class="terminal">
<div class="terminal__task-bar">
<span class="terminal__circle terminal__circle--red"></span>
<span class="terminal__circle terminal__circle--yellow"></span>
<span class="terminal__circle terminal__circle--green"></span>
</div>
<div class="terminal__window">
<p class="terminal__prompt">$ <span class="terminal__prompt--typing">
<span class="cover cover--gimme-dev"></span>404 ERROR</span>
</p>
<p class="terminal__prompt terminal__prompt--checkout">Go back home: <span class="terminal__window--highlight">
<a href="index.html" target="_blank">Click here For Home</a></span></p><p class="terminal__prompt terminal__prompt--show-contact">$
<span class="terminal__prompt--typing"><span class="cover cover--show-contact"></span>Stuck here ? mail me</span></p><p class="terminal__prompt terminal__prompt--mail">mail: <span class="terminal__window--highlight"><a href="mailto:[email protected]">[email protected]</a>
</span>
</p>
</div>
</div>
<style>
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:500');
*{
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
.terminal {
font-family: "Source Code Pro", "Monaco", "Courier New", monospace;
font-weight: 400;
font-size: 1.125rem;
line-height: 1.5rem;
position: relative;
margin: 0 auto;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
@media screen and (min-width: 30rem) {
.terminal {
font-size: 1.25rem;
line-height: 2rem;
}
}
@media screen and (min-width: 60.5rem) {
.terminal {
max-width: 60.5rem;
}
}
.terminal__task-bar {
height: 2rem;
padding-left: 0.5rem;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
background-color: #efefef;
}
@media screen and (max-width: 30rem) {
.terminal__task-bar {
padding-top: 0.5rem;
}
}
.terminal__window {
height: 17.5rem;
padding: 1.5rem;
border-bottom-right-radius: 0.5rem;
border-bottom-left-radius: 0.5rem;
background-color: #000;
}
.terminal__window--highlight {
color: #51e05d;
}
.terminal__circle {
position: relative;
display: inline-block;
width: 0.75rem;
height: 0.75rem;
margin-right: -0.1875rem;
border-radius: 50%;
}
.terminal__circle--red {
background-color: #fb574e;
}
.terminal__circle--yellow {
background-color: #fbbd2e;
}
.terminal__circle--green {
background-color: #51e05d;
}
.terminal__prompt--checkout, .terminal__prompt--show-contact, .terminal__prompt--mail {
opacity: 0;
}
.terminal__prompt--checkout {
animation: show-checkout 16s infinite;
}
.terminal__prompt--show-contact {
animation: show-show-contact 16s infinite;
}
.terminal__prompt--mail {
animation: show-mail 16s infinite;
}
.terminal__prompt--typing {
position: relative;
}
.terminal__prompt--typing .cover {
position: absolute;
z-index: 1;
top: 0;
right: 0;
display: inline-block;
box-sizing: border-box;
height: 100%;
background: #000;
border-left: 1px solid #fff;
}
.terminal__prompt--typing .cover--gimme-dev {
animation: typing-gimme-dev 16s steps(19, end) infinite;
}
.terminal__prompt--typing .cover--show-contact {
animation: typing-show-contact 16s steps(19, end) infinite;
}
@keyframes typing-gimme-dev {
0% {
width: 100%;
opacity: 1;
}
12% {
width: 0;
}
15% {
opacity: 1;
}
16% {
opacity: 0;
}
100% {
opacity: 0;
}
}
@keyframes typing-show-contact {
0%,
35% {
width: 100%;
}
47%,
100% {
width: 0;
}
48% {
opacity: 1;
}
49% {
opacity: 0;
}
100% {
opacity: 0;
}
}
@keyframes show-checkout {
0%,
20% {
opacity: 0;
}
25%,
100% {
opacity: 1;
}
}
@keyframes show-mail {
0%,
55% {
opacity: 0;
}
60%,
100% {
opacity: 1;
}
}
@keyframes show-uploaded {
0%,
63% {
opacity: 0;
}
68%,
100% {
opacity: 1;
}
}
@keyframes show-show-contact {
0%,
28% {
opacity: 0;
}
32%,
100% {
opacity: 1;
}
}
body {
background: #383838;
}
a {
text-decoration: none;
color: inherit;
}
a:hover, a:focus, a:active {
color: #0091eb;
text-decoration: underline;
}
</style>
<script src="scripts/index.js"></script>
</body>
</html>