-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
142 lines (130 loc) · 3.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>#404 Not Found !!!!!! | RULER(S)</title>
<link rel="shortcut icon" href="/favicon.ico" >
<link rel="stylesheet" href="/style.css">
<script src="/js/jquery.js"></script>
<script src="/js/rulers.js"></script>
<style type="text/css" media="screen">
body{
background-image: url("/logo.svg");
background-repeat: no-repeat;
background-size: 50%;
background-position: center 100px;
}
h1.notfound{
margin-top: 15.5%;
text-align: center;
text-transform: uppercase;
font-family: 'bitmap', sans-serif;
font-size: 400%;
color: #fff;
letter-spacing: 0.01em;
}
.notfound span{
text-shadow:
0 0 2px rgba(204, 208, 212,0.5),
0 15px 25px rgba(0, 0, 0, 0.3),
0 -2px 3px rgba(0, 0, 0, 0.1),
0 -5px 10px rgba(255, 255, 255, 0.5),
0 5px 10px rgba(0, 0, 0, 0.3),
0 3px 4px rgba(255, 255, 255, 0.2),
0 0 20px rgba(255, 255, 255, 0.45);
-webkit-animation: notfound 0.20s ease-in-out infinite alternate;
}
@-webkit-keyframes notfound {
to {
color: rgba(0,0,0,0);
text-shadow:
0 0 0 rgba(0, 0, 0, 0),
0 0 0 rgba(255, 255, 255, 0),
0 0 0 rgba(255, 255, 255, 0),
0 0 0 rgba(0, 0, 0, 0),
0 0 0 rgba(255, 255, 255, 0),
0 0 0 rgba(255, 255, 255, 0);
}
}
.notfound span:nth-child(2){
-webkit-animation-delay:0.15s;
}
.notfound span:nth-child(3){
-webkit-animation-delay:0.15s;
}
.notfound span:nth-child(4){
-webkit-animation-delay:0.45s;
}
.notfound span:nth-child(5){
-webkit-animation-delay:0.60s;
}
.notfound span:nth-child(6){
-webkit-animation-delay:0.75s;
}
.notfound span:nth-child(7){
-webkit-animation-delay:0.90s;
}
.notfound span:nth-child(8){
-webkit-animation-delay:1.05s;
}
.notfound span:nth-child(9){
-webkit-animation-delay:1.20s;
}
.notfound span:nth-child(10){
-webkit-animation-delay:1.35s;
}
.notfound span:nth-child(11){
-webkit-animation-delay:1.50s;
}
.notfound span:nth-child(12){
-webkit-animation-delay:1.65s;
}
.notfound span:nth-child(13){
-webkit-animation-delay:1.80s;
}
.notfound span:nth-child(14){
-webkit-animation-delay:1.95s;
}
.notfound span:nth-child(15){
-webkit-animation-delay:2.10s;
}
</style>
</style>
</head>
<body>
<!-- <header>
<a href="/" id="logo" class="fl"><img src="logo.svg" alt="rulers"></a>
<nav class="fl">
<ul>
<li><a href="/who_am_i.html">WHO AM I ?</a></li>
<li><a href="#" class="notyet">LOG (not ready) </a></li>
<li><a href="#" class="contact">CONTACT</a></li>
<li><a href="#">WORKS</a></li>
<li><a href="#">PROJECTS</xa></li>
</ul>
</nav>
</header> -->
<h1 class="notfound">
<span>4</span>
<span>0</span>
<span>4</span><br>
<span>N</span>
<span>o</span>
<span>t</span>
<span> </span>
<span>F</span>
<span>o</span>
<span>n</span>
<span>u</span>
<span>d</span>
<span>!</span>
<span>!</span><br>
<a href="/">[Start]</a>
</h1>
<!-- <div id="content">
</div> -->
<!-- <footer class="clearfix">
<p class="copyright">Copyright © 2013 RULER(S) All Rights Reserved.</p>
</footer> -->
</body>
</html>