-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path404.html
64 lines (61 loc) · 1.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
---
layout: default
permalink: "/404.html"
title: Page not found
---
<style type="text/css" media="screen">
main.page-content {
display: flex;
height: 100%;
width: 100%;
padding: 0;
}
#main.wrapper {
flex: 1;
display: flex;
margin: 0;
max-width: 100vw;
padding: 0;
}
.container {
margin: 0;
padding: 0;
/* opacity: 50%; */
background-color: #b3a1a1;
background-blend-mode: screen;
background-image: url("https://images.unsplash.com/photo-1622354688049-e1a21bcb88bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80");
background-repeat: no-repeat;
background-size: cover;
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
}
.container h1,
.container p {
color: #5e2417;
text-shadow: 0px 0px 3px #ffffff;
}
.container h1.not-found-code {
margin: 30px 0;
font-size: 6em;
font-family: "Lucida Sans", Geneva, Verdana, sans-serif;
font-weight: bold;
line-height: 1;
}
.container p {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.container p.not-found {
font-size: 2em;
}
.container p.not-found-info {
font-size: 1em;
}
</style>
<div class="container">
<h1 class="not-found-code">404</h1>
<p class="not-found"><strong>Page not found</strong></p>
<p class="not-found-info">Enjoy a moment of emptiness.</p>
</div>