-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path404.html
More file actions
52 lines (44 loc) · 861 Bytes
/
404.html
File metadata and controls
52 lines (44 loc) · 861 Bytes
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
---
layout: default
permalink: /404.html
---
<style>
.site-footer {
display: none;
}
.error-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 60vh;
text-align: center;
padding: 40px 20px;
}
.error-code {
font-size: 200px;
font-weight: bold;
color: #7D110c;
line-height: 1;
margin: 0;
font-family: Georgia, "Garamond", "Times New Roman", serif;
}
.error-message {
font-size: 40px;
color: #7D110c;
margin-top: 30px;
margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
.error-code {
font-size: 120px;
}
.error-message {
font-size: 20px;
}
}
</style>
<div class="error-container">
<h1 class="error-code">404</h1>
<p class="error-message">Page not found</p>
</div>