-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
110 lines (94 loc) · 2.3 KB
/
Copy path404.html
File metadata and controls
110 lines (94 loc) · 2.3 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
<html>
<script type="text/javascript">
window["_gaUserPrefs"] = { ioo: function() { return true; } }
</script>
<head>
<title>Page Not Found</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0 auto;
margin-top: 48px;
max-width: 616px;
padding: 0 16px;
font-family: 'Roboto', 'Helvetica Neue', sans-serif;
font-size: 16px;
line-height: 24px;
color: rgba(0, 0, 0, 0.87);
}
h1,
h2,
h3 {
font-family: 'Roboto', 'Helvetica Neue', sans-serif;
font-weight: 300;
}
h1 {
margin: 24px 0 16px 0;
padding: 0 0 16px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
font-size: 32px;
line-height: 36px;
}
h2 {
margin: 24px 0 16px 0;
padding: 0;
font-size: 20px;
line-height: 32px;
color: rgba(0, 0, 0, 0.54);
}
p {
margin: 0;
margin-bottom: 16px;
}
ol {
margin: 0;
}
ol li {
margin: 0;
line-height: 24px;
padding-left: 12px;
}
a {
color: #039BE5;
text-decoration: underline;
}
a:hover {
text-decoration: underline;
}
code {
display: inline-block;
padding: 3px 4px;
background-color: #ECEFF1;
border-radius: 3px;
font-family: 'Roboto Mono', "Liberation Mono", Courier, monospace;
font-size: 14px;
line-height: 1;
}
.logo {
display: block;
text-align: center;
margin-top: 48px;
margin-bottom: 24px;
}
img {
width: 220px;
}
@media screen and (max-width: 616px) {
body {
margin-top: 24px;
}
.logo {
margin: 0;
}
}
</style>
</head>
<body>
<h1>Whoops! This ain't pretty..</h1>
<p>This page does not exist... yet! Sorry about that! Want to <a href="/" title="Grayson Paul Cooper" alt="Grayson Paul Cooper" style="color:#c8008c">go home</a>?</p>
<!-- <a class="logo" href="https://elijah.io"> -->
<!-- <img src="https://elijah.io/images/favicon.png"> -->
<!-- </a> -->
</body>
</html>