-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
107 lines (97 loc) · 2.45 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
---
permalink: /404.html
layout: 404
---
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 3px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
body {
background: linear-gradient(to bottom, #040621, #255ac6);
background-repeat: no-repeat;
background-attachment: fixed;
color: #eaeaea;
}
.uh-oh {
height: 120px;
width: 120px;
}
/* Animate the "uh-oh" images to rotate left and right */
@keyframes rotate {
25% {
transform: rotate(10deg);
}
75% {
transform: rotate(-10deg);
}
}
/* Animate the "uh-oh" images to move up and down */
@keyframes move {
from {
transform: translate(0, 0);
}
to {
transform: translate(0, 10px);
}
}
/* Set the animation for each "uh-oh" image */
.uh-oh:nth-child(1) {
animation: rotate 12s ease-in-out reverse infinite;
top: 25%;
left: 225%;
transform-origin: center;
/* background-size: auto; */
}
.uh-oh:nth-child(2) {
animation: rotate 14s ease-in-out infinite;
top: 20%;
left: 5%;
transform-origin: center;
}
.uh-oh:nth-child(3) {
animation: rotate 17s ease-in-out reverse infinite;
top: 65%;
left: 200%;
transform-origin: center;
}
.uh-oh:nth-child(4) {
animation: rotate 19s ease-in-out infinite;
top: 75%;
left: -25%;
transform-origin: center;
}
/* Add the "uh-oh" images to the page */
.uh-oh-container {
position: fixed;
top: 0;
left: 0;
width: auto;
height: 100%;
}
.uh-oh-container img {
position: relative;
top: calc(50% - 50px);
left: calc(50% - 50px);
}
</style>
<div class="container">
<a id="a-title" href="{{ site.baseurl }}">
<h2 style="border: 12px inset #a758ecb6; display: inline-block; padding: 1px; font-size: 28px; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; -webkit-text-fill-color: #b27ce1;">Return back to Superkat's Awesome Website</h2>
</a>
<h1>404</h1>
<p style="font-size: 25px;">The requested page could not be found</p>
<div class="uh-oh-container">
<img src="../assets/images/uhoh.png" alt="Uh-oh" class="uh-oh">
<img src="../assets/images/uhoh.png" alt="Uh-oh" class="uh-oh">
<img src="../assets/images/uhoh.png" alt="Uh-oh" class="uh-oh">
<img src="../assets/images/uhoh.png" alt="Uh-oh" class="uh-oh">
</div>
</div>