-
Notifications
You must be signed in to change notification settings - Fork 13
/
404.html
81 lines (73 loc) · 1.68 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
---
title: "404 Error"
permalink: /404.html
layout: default
noContentMargin: true
---
<style>
.glitch {
animation: glitch 1s linear infinite;
}
@keyframes glitch {
2%,64%{
transform: translate(2px,0) skew(0deg);
}
4%,60%{
transform: translate(-2px,0) skew(0deg);
}
62%{
transform: translate(0,0) skew(5deg);
}
}
.glitch:before,
.glitch:after {
content: attr(title);
position: absolute;
left: 0;
}
.glitch:before{
animation: glitchTop 1s linear infinite;
clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
-webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
@keyframes glitchTop{
2%,64%{
transform: translate(2px,-2px);
}
4%,60%{
transform: translate(-2px,2px);
}
62%{
transform: translate(13px,-1px) skew(-13deg);
}
}
.glitch:after {
animation: glitchBotom 1.5s linear infinite;
clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
-webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}
@keyframes glitchBotom{
2%,64%{
transform: translate(-2px,0);
}
4%,60%{
transform: translate(-2px,0);
}
62%{
transform: translate(-22px,5px) skew(21deg);
}
}
</style>
<div class="full grid-content bg-pattern-dot py-8 relative overflow-hidden bg-white-gradient-center flow mt-0">
<div class="content relative z-1 flex flex-col items-center flow">
<h1 class="text-7xl font-bold glitch color-blue-700 m-0 font-monospace" title="404">404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
{% assign url = "/" | relative_url %}
{% include components/button.html
text = "Return Home"
href = url
class = "flow-2"
%}
</div>
</div>