-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.html
58 lines (53 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>EmulatorJS | 404</title>
<link rel="icon" href="favicon.ico" sizes="16x16 32x32 48x48 64x64" type="image/vnd.microsoft.icon">
<meta name="viewport" content="width = device-width, initial-scale = 1">
<style>
body {
background-color: black;
overflow: hidden;
}
.page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: white;
text-align: center;
}
.logo {
width: 350px;
height: 350px;
animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
0% {
filter: drop-shadow(0 0 10px white);
}
50% {
filter: drop-shadow(0 0 20px white);
}
100% {
filter: drop-shadow(0 0 10px white);
}
}
.text {
font-size: 24px;
filter: drop-shadow(0 0 10px white);
}
</style>
</head>
<body>
<div class="page">
<img src="/img/logo-light.png" alt="Logo" class="logo">
<p class="text">404 - Page not found!</p>
</div>
</body>
</html>