-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
58 lines (58 loc) · 1.55 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
---
title: not_found :url >> /dev/null
layout: default
---
<style>
body {
background: transparent;
}
.lost-in-space {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
}
.all-i-know-is-this {
display: block;
text-align: left;
font-family: 'Source Code Pro', monospace;
color: #ddddff;
border: 1px solid #ddddff;
}
.i-cannot-find-my-way {
border-bottom: 1px solid rgb(221, 221, 255);
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 0.125rem;
background: rgba(221, 221, 225, 0.125);
}
.the-void {
font-size: 1.6rem;
line-height: 1rem;
}
.is-all-hope-then-lost {
padding: 0.125rem;
}
.is-all-hope-then-lost p {
margin: 0;
}
.is-all-hope-then-lost p:not(:last-child) {
margin-bottom: 0.125rem;
}
</style>
<div class="lost-in-space">
<div class="all-i-know-is-this">
<div class="i-cannot-find-my-way">
<span>not_found</span>
<span class="the-void">֎</span>
</div>
<div class="is-all-hope-then-lost">
<p>this page doesn't exist</p>
<p>how did you get here</p>
<p>i hope you find your way</p>
<p><a href="/">back</a> <a href="/">إرجاع</a> <a href="/">ra đi</a> <a href="/">ud</a></p>
</div>
</div>
</div>