-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.html
90 lines (77 loc) · 1.54 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
---
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>404 — Page Not Yet Programmed</title>
{% seo title=false %}
</head>
<body>
<style>
body,
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
user-select: none;
background: #222;
color: #fff;
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h2 {
font-weight: 700;
font-size: 25vh;
margin: 0;
line-height: 1;
animation: light 4s ease infinite;
}
h2+p {
font-size: 3vh;
}
.patreon {
font-size: 3vh;
color: white;
background-color: rgb(253, 61, 36);
background-color: #e85b46;
border-radius: 8px;
cursor: pointer;
text-decoration: none;
transition: .2s ease-out;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
border: 0;
padding: 4px 10px;
}
.patreon:hover {
box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.28), 0 2px 7px 0 rgba(0, 0, 0, 0.25);
}
@keyframes light {
0% {
text-shadow: 0 0 20px #e900fe;
}
33% {
text-shadow: 0 0 20px #6de33c;
}
66% {
text-shadow: 0 0 20px #e85b46;
}
100% {
text-shadow: 0 0 20px #e900fe;
}
}
</style>
<div class="box">
<h2>404</h2>
<p>Page Not Yet Programmed</p>
<p>Want more?</p>
<p><a href="https://www.patreon.com/PeyTy" class="patreon">Patreon</a></p>
</div>
</body>
</html>