-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
53 lines (47 loc) · 1.02 KB
/
404.html
File metadata and controls
53 lines (47 loc) · 1.02 KB
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
---
permalink: /404.html
layout: default
---
<style>
.error-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 60vh;
text-align: center;
padding: 2rem;
}
.error-code {
font-family: 'Young Serif', Georgia, serif;
font-size: 6rem;
font-weight: 400;
color: var(--text-color);
margin: 0;
line-height: 1;
opacity: 0.15;
}
.error-message {
font-family: 'Lora', Georgia, serif;
font-size: 1.25rem;
color: var(--text-color);
margin: 1.5rem 0;
opacity: 0.8;
}
.error-link {
font-family: 'Lora', Georgia, serif;
color: var(--text-color);
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
transition: opacity 0.2s ease;
}
.error-link:hover {
opacity: 0.6;
}
</style>
<div class="error-page">
<h1 class="error-code">404</h1>
<p class="error-message">This page doesn't exist.</p>
<a href="/" class="error-link">Back to home</a>
</div>