This repository has been archived by the owner on Oct 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
404.html
65 lines (58 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>404</title>
<style>
* {
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
background-color: #212529;
color: #dee2e6;
}
#wrapper {
display: flex;
background-color: #212529 !important;
border: none;
width: 80%;
height: 90vh;
margin: 5vh auto;
justify-content: center;
align-items: center;
vertical-align: middle;
border-radius: 25px;
}
#content {
text-align: center;
}
h1 {
font-size: 30vh;
line-height: 30vh;
}
h2 {
margin: 2vh 0;
}
h2,
p {
color: #a1a8ae;
}
a {
color: rgb(110, 168, 254);
}
</style>
</head>
<body>
<div id="wrapper">
<div id="content">
<h1>404</h1>
<h2>Oops! Page not found</h2>
<p>Sorry, the page you're looking for doesn't exist. Please, go to <a href="/">main page</a>.</p>
</div>
</div>
</body>
</html>