-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (111 loc) · 3.29 KB
/
Copy pathindex.html
File metadata and controls
128 lines (111 loc) · 3.29 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE HTML>
<html>
<head>
<title>Pip Chell - BirthdayOnline - 404</title>
<link rel="icon" href="/admin-img/favicon.png">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="description" content="Page not found - Pip Chell">
<style>
html, body, div, h1, h2, p, ul, li, a {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #ffffff;
font-family: Arial, Helvetica, sans-serif;
color: #999999;
font-size: 16pt;
overflow: hidden;
}
#header {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 3rem;
background: #ffffff;
text-align: center;
}
.error-content {
max-width: 600px;
width: 100%;
padding: 2em;
}
.error-content h1 {
font-size: clamp(5rem, 15vw, 8rem);
font-weight: bold;
color: #828282;
margin-bottom: 0.15em;
line-height: 1;
letter-spacing: -0.02em;
}
.error-content h2 {
font-size: clamp(1.5rem, 5vw, 2rem);
color: #444444;
font-weight: normal;
margin-bottom: 0.5em;
letter-spacing: -0.01em;
}
.error-content p {
font-size: clamp(1rem, 3vw, 1.25rem);
line-height: 1.6;
color: #999999;
max-width: 90%;
margin: 0 auto 2.5rem;
}
.actions {
list-style: none;
display: flex;
justify-content: center;
align-items: center;
padding: 0;
margin: 0;
}
.button {
display: inline-block;
text-decoration: none;
font-size: 0.9rem;
letter-spacing: 0.05em;
padding: 1rem 2.5rem;
border: 1px solid #e6e6e6;
border-radius: 999px;
color: #999999;
background: transparent;
cursor: pointer;
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.button:hover {
border-color: #b2b2b2;
background-color: #fafafa;
color: #666666;
}
@media screen and (max-width: 736px) {
#header {
padding: 1.5rem;
}
.error-content {
padding: 1rem 0;
}
.button {
width: 100%;
max-width: 280px;
padding: 0.85rem 2rem;
}
}
</style>
</head>
<body class="is-preload">
<header id="header">
<div class="error-content">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Oops! The page you're looking for doesn't exist. It might have been moved or deleted.</p>
<ul class="actions special">
<li><a href="https://pipchell.com" class="button">Go Home</a></li>
</ul>
</div>
</header>
</body>
</html>