-
Notifications
You must be signed in to change notification settings - Fork 8
/
404.html
110 lines (89 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<title>404 - Ditto can't transform into this</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="icon" type="image/png" href="/favicon.gif" />
<style>
html, body {
padding: 0;
margin: 0;
height: 100%;
}
body {
background: white;
color: black;
text-align: center;
text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
font-family: Verdana, sans-serif;
}
a {
color: black;
text-decoration: none;
}
#center {
border: 0;
width: 400px;
margin: 0 auto;
margin-top: -200px;
position: relative;
top: 50%;
}
#message {
background: white;
position: absolute;
top: 40px;
right: -25px;
font-weight: bold;
font-size: 12px;
padding: 3px 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px outset black;
}
#line {
background: transparent;
position: absolute;
top: 63px;
right: 155px;
border-left: 2px solid black;
-moz-transform: rotate(40deg);
-webkit-transform: rotate(40deg);
-o-transform: rotate(40deg)
transform: rotate(40deg);
}
#back {
background: white;
position: absolute;
font-weight: bold;
font-size: 12px;
padding: 3px 5px;
width: 1em;
top: 80px;
left: 30px;
border: 1px dashed black;
}
#home {
background: white;
position: absolute;
font-weight: bold;
font-size: 12px;
padding: 3px 5px;
width: 1em;
top: 150px;
right: 10px;
border: 1px dashed black;
}
</style>
</head>
<body>
<div id="center">
<img src="/images/ditto.jpg">
<div id="message">Sowwy, I ant tansfom into dat</div>
<div id="line"> </div>
<a href="javascript: history.back();"><div id="back">B A C K</div></a>
<a href="/"><div id="home">H O M E</div></a>
</div>
</body>
</html>