-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
58 lines (55 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404</title>
<base target="_blank"/>
<style type="text/css">
body {
background: #F7F7F7;
width: 100%;
height: 100%;
}
.loading {
text-transform: uppercase;
font-family: 'Cabin Condensed', sans-serif;
font-weight: bold;
font-size: 3rem;
text-align: center;
height: 120px;
line-height: 110px;
vertical-align: bottom;
display: block;
-moz-background-clip: text;
-o-background-clip: text;
-webkit-background-clip: text;
background-clip: text;
color: #E2757588;
text-shadow: 1px 1px rgba(255, 255, 255, 0.6);
animation: wave-animation 1s infinite linear, loading-animation 10s infinite linear alternate;
background-size: 200px 100px;
background-repeat: repeat-x;
opacity: 1;
position: absolute;
left: 35.5%;
top: 30%;
}
</style>
<script>
window.location = location.origin;
function placeholderPic() {
var w = document.documentElement.offsetWidth;
document.documentElement.style.fontSize = w / 20 + 'px';
}
placeholderPic();
window.onresize = function () {
placeholderPic();
}
</script>
</head>
<body>
<div class="loading" style="padding-top:50px">
404
</div>
</body>
</html>