-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
192 lines (182 loc) · 5.73 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found :(</title>
<link rel="shortcut icon" href="/static/favicon.ico">
<style>
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
html {
padding: 30px 10px;
font-size: 20px;
line-height: 1.4;
color: #444444;
background: white;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html,
input {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
max-width: 720px;
padding: 30px 20px 50px;
margin: 0 auto;
}
h1 {
color: #bbb;
margin: 0 10px;
text-transform: uppercase;
font-size: 70px;
letter-spacing: -4px;
line-height: 64px;
}
h1 span {
text-transform: capitalize;
font-family: Georgia, "Times New Roman", Times, serif;;
font-style: italic;
font-size: 63px;
}
h3 {
margin: 1.5em 0 0.5em;
}
p {
margin: 1em 0;
}
ul {
padding: 0 0 0 40px;
margin: 1em 0;
}
.container {
margin: 0 auto;
}
.fourofour-sign {
background: url('https://2012.southdakotacodecamp.com/static/cc12/img/sign.png');
float: right;
height: 491px;
width: 280px;
}
.fourofour-content {
max-width: 350px;
text-align: center;
}
.fourofour-red {
color:#EB4008;
font-family: Georgia, "Times New Roman", Times, serif;;
font-style: italic;
margin-bottom: 45px;
}
.fourofour-blue {
color: #198DAD;
font: italic bold 14px Georgia,"Times New Roman", serif;
margin-bottom: 3px;
}
.fourofour-options {
display: inline-block;
margin: 0;
padding: 0;
}
.fourofour-options li {
font-size: 14px;
}
/* google search */
#goog-fixurl ul {
list-style: none;
padding: 0;
margin: 0;
}
#goog-fixurl form {
margin: 0;
}
#goog-wm-qt,
#goog-wm-sb {
border: 1px solid #bbb;
font-size: 16px;
line-height: normal;
vertical-align: top;
color: #444;
border-radius: 2px;
}
#goog-wm-qt {
width: 220px;
height: 20px;
padding: 5px;
margin: 5px 10px 0 0;
box-shadow: inset 0 1px 1px #ccc;
}
#goog-wm-sb {
border: none;
display: inline-block;
height: 32px;
padding: 0 10px;
margin: 5px 0 0;
white-space: nowrap;
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
*overflow: visible;
*display: inline;
*zoom: 1;
background: #F1C400;
color: white;
text-transform: uppercase;
font-size: 14px;
}
#goog-wm-sb:hover,
#goog-wm-sb:focus {
border:none;
box-shadow: 0;
background-color: #E6E6E6;
color: #444;
}
#goog-wm-qt:hover,
#goog-wm-qt:focus {
border-color: #105cb6;
outline: 0;
color: #222;
}
input::-moz-focus-inner {
padding: 0;
border: 0;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-26246483-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-26246483-6');
</script>
</head>
<body>
<div class="container">
<div class="fourofour-sign"></div>
<div class="fourofour-content">
<h1>You Are<br><span>Lost</span></h1>
<p class="fourofour-red">Sorry, but the page you were trying to view does not exist.
<p class="fourofour-blue">It looks like this was the result of either:
<ul class="fourofour-options">
<li>a mistyped address</li>
<li>an out-of-date link</li>
</ul>
</div>
<script type="text/javascript">
var GOOG_FIXURL_LANG = 'en';
var GOOG_FIXURL_SITE = 'https://2012.southdakotacodecamp.com';
</script>
<script type="text/javascript"
src="https://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js">
</script>
</div>
</body>
</html>