-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy path404.html
57 lines (57 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<title>404 - Page Not Found - BPKG</title>
<style>
@font-face {
font-family: 'UbuntuMono-B';
src: url('/assets/themes/the-program/font/UbuntuMono-B-webfont.eot');
src: url('/assets/themes/the-program/font/UbuntuMono-B-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/themes/the-program/font/UbuntuMono-B-webfont.woff') format('woff'),
url('/assets/themes/the-program/font/UbuntuMono-B-webfont.ttf') format('truetype'),
url('/assets/themes/the-program/font/UbuntuMono-B-webfont.svg#UbuntuMono-B') format('svg');
font-weight: normal !important;
font-style: normal;
}
html, body {
background: black;
height: 100%;
margin: 0;
color: rgba(255,255,255,0.75);
font-family: UbuntuMono-B;
font-size: 32px;
font-size: 3vw;
}
.center-middle {
align-items: center;
display: flex;
height: 100%;
justify-content: center;
}
p {
margin: 0;
text-align: center;
line-height: 3vi;
}
.sorry {
font-size: 2.25vw;
}
.pnf {
font-family: 'Courier New', Courier, monospace;
}
img {
filter: invert(75%);
height: 50vmin;
}
</style>
</head>
<body>
<div class="center-middle">
<p>
<img src="/assets/logo.svg" /><br />
<span class="sorry">Sorry this page does not exist =(</span><br />
<span class="pnf">404 - Page Not Found</span>
</p>
</div>
</body>
</html>