-
Notifications
You must be signed in to change notification settings - Fork 2
/
notfound.html
64 lines (64 loc) · 1.72 KB
/
notfound.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Page Not Found - Brickimedia</title>
<link rel="icon" type="image/ico" href="//www.brickimedia.org/img/favicon.ico">
<link rel="stylesheet" type="text/css" href="//www.brickimedia.org/resources/fonts/lato/lato.css" />
<style type="text/css">
body {
background: rgb(65,158,200);
color: #fff;
}
.image {
background: url(//www.brickimedia.org/img/brickimedia_brick_300.png) 0 0 no-repeat;
width: 300px;
height: 300px;
float: right;
}
h1 {
font-family: 'Lato', sans-serif;
font-size: 400%;
font-weight: lighter;
margin-bottom: -15px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
}
p {
margin-left: 5px;
font-family: 'Lato', sans-serif;
max-width: 700px;
font-size: 105%;
}
a {
color: #ccc;
text-decoration: none;
}
a:hover {
color: #eaeaea;
}
span {
position: absolute;
bottom: 10px;
right: 20px;
}
</style>
</head>
<body>
<div class="image"></div>
<h1>Not Found</h1>
<p>
The page you requested was not found on our server. Either the page has been removed, or the URL you entered was invalid or misspelled.
</p>
<p>
If this is a mistake, please report it on <a href="//phabricator.wikimedia.org/maniphest/task/edit/form/1/">Phabricator</a> or simply return to the <a href="//www.brickimedia.org">front page</a>.
</p>
<span>
<a href="//www.brickimedia.org">
<img src="//www.brickimedia.org/img/brickimedia-tag.png" alt="Brickimedia" width="88" height="31" />
</a>
</span>
</body>
</html>