-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
57 lines (56 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>404: PAGE NOT FOUND</title>
<style type="text/css">
html,
body {
height: 100%;
background-color: #666;
}
h1 {
font-size: 58px;
margin-top: 20px;
margin-bottom: 10px;
color: white;
font-family: Helvetica, sans-serif;
font-weight: 500;
line-height: 1.1;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
text-shadow: 0 1px 3px rgba(0,0,0,.5);
cursor: pointer;
}
a {
color: white;
text-decoration: none;
}
.site-wrapper {
display: table;
width: 100%;
height: 100%;
min-height: 100%;
}
.site-wrapper-inner {
display: table-cell;
vertical-align: middle;
}
.cover-container {
margin-right: auto;
margin-left: auto;
width: 100%;
}
</style>
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<a href="/"><h1 class="cover-heading">PAGE NOT FOUND</h1></a>
</div>
</div>
</div>
</body>
</html>