-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
62 lines (54 loc) · 991 Bytes
/
404.html
File metadata and controls
62 lines (54 loc) · 991 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
53
54
55
56
57
58
59
60
61
62
---
layout: default
title: "404: Page Not Found"
permalink: /404.html
---
<div class="page">
<div class="error-404">
<h1 class="error-404-title">404</h1>
<h2 class="error-404-subtitle">Page Not Found</h2>
<p class="error-404-message">
Sorry, the page you're looking for doesn't exist or may have been moved.
</p>
</div>
</div>
<style>
.error-404 {
text-align: center;
padding: 3rem 1rem;
max-width: 600px;
margin: 0 auto;
}
.error-404-title {
font-size: 8rem;
font-weight: 700;
color: #eb6b2d;
margin: 0;
line-height: 1;
border: none;
padding: 0;
}
.error-404-subtitle {
font-size: 2rem;
font-weight: 600;
color: #222;
margin: 1rem 0;
}
.error-404-message {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin: 1.5rem 0 2.5rem;
}
@media (max-width: 600px) {
.error-404-title {
font-size: 5rem;
}
.error-404-subtitle {
font-size: 1.5rem;
}
.error-404-message {
font-size: 1rem;
}
}
</style>