-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
executable file
·88 lines (75 loc) · 2.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@font-face {
font-family: 'League Spartan Bold';
font-style: normal;
font-weight: normal;
src: local('League Spartan Bold'), url('./fonts/LeagueSpartan-Bold.woff') format('woff');
}
* {
line-height: 1.2;
margin: 0;
}
html {
display: table;
font-family: sans-serif;
height: 100%;
text-align: center;
width: 100%;
}
body {
background-color: #fff1de;
color: #d60a51;
display: table-cell;
vertical-align: middle;
margin: 2em auto;
}
h1 {
font-size: 2em;
font-weight: 400;
font-family: 'League Spartan Bold', sans-serif;
padding-bottom: 0.5rem;
}
p {
margin: 1rem auto;
width: 600px;
font-family: Source Code Pro, monospace;
}
a {
color: #d60a51;
}
a:hover {
color: #aa0841;
}
.rubies > img {
width: 1rem;
padding: 1rem;
}
@media only screen and (max-width: 280px) {
body, p {
width: 95%;
}
h1 {
font-size: 1.5em;
margin: 0 0 0.3em;
}
}
</style>
</head>
<body>
<h1>Page Not Found</h1>
<div class="rubies">
<img src="./img/icon-ruby.svg" alt="Ruby icon">
<img src="./img/icon-ruby.svg" alt="Ruby icon">
<img src="./img/icon-ruby.svg" alt="Ruby icon">
</div>
<p>Sorry, but the page you were trying to view does not exist.</p>
<p><a href="https://kiwi.ruby.nz">Head back to the main page</a>, or you might be able to find what you're looking for on <a href="https://2017-kiwi.ruby.nz">the 2017 edition of Kiwi Ruby</a>.</p>
</body>
</html>
<!-- IE needs 512+ bytes: https://blogs.msdn.microsoft.com/ieinternals/2010/08/18/friendly-http-error-pages/ -->