-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
68 lines (59 loc) · 1.71 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
---
title: Page Not Found
layout: default
permalink: /404.html
---
<style>
.main {
padding-top: 5%;
padding-bottom: 5%;
text-align: center;
}
.missingno {
width: 30%;
height: auto;
}
.supplement-text {
font-size: 2em;
}
.search-bar {
display: flex;
flex-direction: column;
text-align: center;
}
.search-bar form input[type="submit"] {
display: none;
}
.search-bar form input[type="text"] {
width: 50%;
}
@media(max-width: 768px) {
.missingno {
width: 100%;
height: auto;
}
.supplement-text {
font-size: 1.35em;
}
.search-bar form input[type="text"] {
width: 75%;
}
}
</style>
<div class="main">
<img class="missingno" src="{{ site.baseurl }}/assets/images/missingno.svg" title="Image from unDraw.co"/>
<p class="supplement-text">The page you are looking for can't be found on this website.</p>
<p>Check that the URL is correct or that the page exists.</p>
<br/>
<div class="search-bar">
<form method="get" id="search" action="https://duckduckgo.com/">
<input type="hidden" name="sites" value="https://hyperspace.marquiskurt.net/">
<input type="hidden" name="k9" value="#673ab7">
<input type="hidden" name="kx" value="#ff1744">
<input type="hidden" name="k1" value="-1">
<input type="text" name="q" placeholder="Search (DuckDuckGo)…" style="margin-top: 4px;">
<input type="submit" value="Search">
</form>
</div>
<p><a href="{{ site.baseurl }}">← Go Back</a></p>
</div>