-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
86 lines (78 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<style>
#bg {
top: 0;
left: 0;
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
}
body {
background-color: #171717;
}
* {
color: white;
font-family: 'Inconsolata', monospace;
text-align: center;
}
h1 {
font-size: calc(5vw + 10px);
}
h1, h3 {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
a:hover {
color: #00b000;
}
.content {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div id = "bg"></div>
<div class="content">
<h1>404</h1>
<h3>Not found!</h3>
<br>
<a href="https://stalicites.tech">Go Home?</a>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script>
VANTA.NET({
el: "#bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: "#00ff00",
backgroundColor: "#171717",
points: 12,
maxDistance: 20,
spacing: 18.00
})
</script>
</html>