-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
97 lines (87 loc) · 2.1 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<title>The page you were looking for doesn't exist (404)</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link
href="http://fonts.googleapis.com/css?family=Amatic+SC:400,700"
rel="stylesheet"
type="text/css"
/>
<style>
body {
height: 100%;
width: 100%;
background: #fefefe url(assets/wander.jpeg) center top fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #2e2f30;
font-family: "Amatic SC", sans-serif;
margin: 0;
}
footer {
position: absolute;
bottom: 1%;
width: 100%;
font-family: sans-serif;
text-align: center;
font-size: 0.6em;
color: #fff;
}
a {
color: #fff;
}
a:hover {
color: #27ae60;
}
.dialog {
float: none;
text-align: center;
width: 75%;
margin: 5% auto 0;
}
h1 {
font-size: 4em;
color: #fff;
line-height: 1em;
}
h2 {
font-size: 2.8em;
color: #fff;
line-height: 0.5em;
}
p {
font-size: 2em;
color: #fff;
padding-right: 5%;
}
@media only screen and (max-width: 767px) {
.dialog {
width: 90%;
}
}
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<div>
<div class="dialog">
<h1>Not all those who wander are lost.</h1>
<h2>Error: 404</h2>
<p>
looks like we lost our way and were unable to find the page you were
looking for.
</p>
</div>
</div>
</body>
<footer>
<a href="http://www.free404.com" target="_blank">free404.com</a> photo
credit:
<a href="http://www.deathtothestockphoto.com" target="_blank"
>Death to Stock</a
>
</footer>
</html>