forked from iron-io/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
74 lines (68 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='UTF-8' />
<title>The page you were looking for doesn't exist (404)</title>
<style type="text/css">
body {
background-color: #e0e0e0;
color: #666;
font-family: arial, sans-serif;
}
div.dialog {
background: #f2f2f2;
background: -moz-linear-gradient(top, #f2f2f2, #FFFFFF);
background: -webkit-gradient(linear, left top, left bottom,
from(#f2f2f2), to(#FFFFFF));
background: -o-linear-gradient(top, #f2f2f2, #FFFFFF);
background: linear-gradient(top, #f2f2f2, #FFFFFF);
border: 1px solid #BBBBBB;
border-radius: 10px 10px 10px 10px;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.21);
margin: 4em auto 0;
padding: 3em 2em 3em 2em;
position: relative;
width: 700px;
}
div.dialog:before {
content:"";
display:block; /* reduce the damage in FF3.0 */
position:absolute;
width:38em;
height:1px;
border-top: 1px solid white;
z-index: 11;
margin: 0 0 0 8px;
top:0px;
left:0px;
}
h1 {
font-size: 200%;
line-height: 1.2em;
text-shadow: 0 1px 0 white;
margin: 10px 0;
}
p {
line-height: 1.6em;
margin: 0;
}
.logo {
position: absolute;
right: 20px;
top: 20px;
}
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<div class="dialog">
<img src="http://hud.iron.io/images/sad-robot.png" alt="" style="margin-left: 230px;">
<div class="right">
<h1>The page you were looking for doesn't exist.</h1>
<p>You may have mistyped the address or the page may have moved.</p>
<p><a href="http://iron.io">http://Iron.io</a></p>
</div>
<a class="logo" href="/"><img src="http://hud.iron.io/images/ironio-logo.png" alt="" /></a>
</div>
</body>
</html>