-
Notifications
You must be signed in to change notification settings - Fork 122
/
404.html
69 lines (52 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>404 lab.simurai</title>
<meta name="description" content="CSS3 experiments by simurai" />
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.1/build/reset/reset-min.css"/>
<style type="text/css">
html {
background: url("http://files.simurai.com/tumblr/img/bg.gif") repeat fixed 0 0 transparent;
font: 62.5%/1 "Lucida Sans Unicode","Lucida Grande",Verdana,Arial,Helvetica,sans-serif;
}
body {
padding: 150px 50px;
text-align: center;
background: transparent url(http://files.simurai.com/tumblr/img/bg_glow.png) no-repeat fixed center bottom;
}
h1 {
font-size: 5em;
text-shadow: #fff 0 1px 0;
font-family: "Georgia", serif;
}
p{
margin: 20px 0;
font-size: 1.5em;
}
a {
text-decoration: none;
color: hsl(200,100%,50%);
}
a:hover {
color: #000;
}
</style>
</head>
<body>
<h1>404</h1>
<p>That thing got moved. Have a look <a href="http://simurai.com/tagged/lab">here</a>.</p>
<!-- Google -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-599923-1']);
_gaq.push(['_setDomainName', 'simurai.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script><!--/ Google -->
</body>
</html>