-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
112 lines (103 loc) · 2.83 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="en">
<head>
<base href="/Open-Crossword/" />
<meta charset="utf-8" />
<title>Page Not Found - OpenCrossword</title>
<link href="apple-touch-icon.png?v=2" rel="apple-touch-icon" />
<link href="favicon.png" rel="icon" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta
content="#F1F1F1FF"
media="(prefers-color-scheme: light)"
name="theme-color"
/>
<meta
content="#012c37"
media="(prefers-color-scheme: dark)"
name="theme-color"
/>
<style>
:root {
--main-font: "Times New Roman", Times, serif;
--main-border-width: 2px;
--empty-clue-list-text: "No clues";
color-scheme: light dark;
}
@media (prefers-color-scheme: light) {
:root {
--background-colour: #f1f1f1ff;
--foreground-colour: #0f0e12ff;
--selection-colour: #a0c2e9;
--highlight-colour: #d4d4d4;
}
}
@media (prefers-color-scheme: dark) {
:root {
--background-colour: #012c37;
--foreground-colour: #fffaf0ff;
--selection-colour: #1b538a;
--highlight-colour: #3f3f3f;
}
}
html {
width: 100%;
height: 100%;
margin: 0;
}
body {
background-color: var(--background-colour);
color: var(--foreground-colour);
font-family: var(--main-font);
text-align: center;
margin: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
button {
padding: 2px;
margin: 3px 3px 3px 0;
font-family: var(--main-font);
font-size: initial;
border: var(--main-border-width) solid var(--foreground-colour);
background-color: transparent;
color: var(--foreground-colour);
cursor: pointer;
}
button:hover {
background-color: var(--highlight-colour);
}
button:active {
background-color: var(--selection-colour);
}
button svg {
fill: var(--foreground-colour);
stroke: var(--foreground-colour);
width: 22px;
height: 22px;
display: inline;
vertical-align: middle;
}
.oc-offline span {
box-shadow: 0 0 0 var(--main-border-width) var(--foreground-colour);
margin: calc(var(--main-border-width) / 2);
padding: 0.2em;
width: 1em;
height: 1em;
display: inline-block;
font-weight: bold;
font-size: 30px;
text-align: center;
}
</style>
</head>
<body>
<div class="oc-offline">
<h2>Error</h2>
<p><span>4</span><span>0</span><span>4</span></p>
<p>The page you're looking for can't be found.</p>
</div>
</body>
</html>