-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
78 lines (69 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<style>
/* Reset and Basic Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', Arial, sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
background-color: #f4f4f4;
color: #000000;
}
/* Image */
.error-image {
margin-bottom: 20px;
width: 300px;
}
.error-title {
font-family: 'Mongolian Baiti';
font-size: 4.5rem;
color: #000000;
margin-bottom: 10px;
letter-spacing: -4px; /* Adjusted letter spacing */
}
/* Message Text */
.error-message {
font-size: 1.2rem;
color: #666;
margin-top: 10px;
margin-bottom: 20px;
}
.p {
font-family: 'Inter', serif;
float: left;
}
.btn {
display: inline-block; /* Ensure the button is treated as inline-block */
text-decoration: none; /* Remove underline from the link */
margin-top: 15px;
}
.btn img {
transition: transform 0.3s ease-in-out; /* Smooth transition for scaling */
}
.btn:hover img {
transform: scale(1.05); /* Apply scaling on image hover */
}
</style>
</head>
<body>
<img src="/static/media/404.png" alt="404" class="error-image">
<div class="error-title">aw shucks.</div>
<p class="error-message">The requested resource was not found on this server.</p>
<a href="/" class="btn">
<img id="btn" src="/static/media/Return.png" alt="Go Home" style="width: 275px; height: 50px;">
</a>
</body>
</html>