-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
71 lines (66 loc) · 2.46 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
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<meta content="width=device-width,initial-scale=1.0" name=viewport>
<meta content="light dark" name=color-scheme>
<title>404</title>
<link href=/img/favicon-32x32.png rel=icon sizes=32x32 type=image/png>
<link href=/img/favicon-16x16.png rel=icon sizes=16x16 type=image/png>
<link href=/img/apple-touch-icon.png rel=apple-touch-icon sizes=180x180>
<style>
body {
--primary-color: #3f8f68;
--primary-pale-color: #698bcf1c;
--text-color: #3c4043;
--text-pale-color: #9aa2b9;
--bg-color: #fff;
--highlight-mark-color: #5f75b045;
--callout-note-color: #698bcf;
--callout-important-color: #9971d9;
--callout-warning-color: #c99054;
--callout-alert-color: #d35757;
--callout-question-color: #4985a2;
--callout-tip-color: #3ea06f
}
body.dark {
--primary-color: #5bee9b;
--primary-pale-color: #698bcf1c;
--text-color: #ddd;
--text-pale-color: #5d6470;
--bg-color: #000;
--highlight-mark-color: #5f75b045;
--callout-note-color: #698bcf;
--callout-important-color: #9971d9;
--callout-warning-color: #c99054;
--callout-alert-color: #d35757;
--callout-question-color: #4985a2;
--callout-tip-color: #3ea06f
}
body {
--main-font: "Jetbrains Mono";
--code-font: "Jetbrains Mono";
--homepage-max-width: 800px;
--main-max-width: 800px;
--avatar-size: 100px;
--paragraph-font-size: 18px;
--paragraph-line-height: 1.75;
--aside-font-size: 16px;
--img-border-radius: 0px;
--inline-code-border-radius: 2px
}
nav a {
margin-right: 10px
}
</style>
<link href=/main.css rel=stylesheet>
<body class=not-found>
<script>if (localStorage.getItem(`theme`) == `dark`) { document.body.classList.add(`dark`); const a = document.querySelector(`link#hl`); if (a) a.href = `/hl-dark.css` }</script>
<div class=wrapper>
<div class=error>
<div class=code>404</div>
<div class=spacer></div>
<div class=text>Not Found</div>
</div><a href= />« back to home »</a>
</div>
<script src=/js/main.js></script>