-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
60 lines (49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mystis world</title>
<link rel="icon" href="fav.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="./style.css">
<style>
body {
font-weight: 800;
text-align: center;
display: flex;
justify-content: center;
overflow: hidden;
background: black;
}
a {
background-color: transparent;
position: absolute;
bottom: 25%;
padding: 7.5px 20px;
border-radius: 10px;
color: white;
background-color: #FF0043;
border-color: #FF0043;
border-style: solid;
display: inline-block;
text-decoration: none;
transition: transform 0.25s ease, background-color 0.5s ease;
}
a:hover {
transform: scale(0.9);
background-color: var(--bg-color);
color: var(--element-color);
}
img {
scale: 0.2;
position: absolute;
top: -800px;
}
</style>
</head>
<body>
<img src="assets/oops.png" alt="my grandma">
<a href="../bootloader/grub.html">oopsie? Something Bad happened. Click here to go where you originally wanted to.</a>
</body>
</html>