-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
73 lines (69 loc) · 1.96 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
<html>
<head>
<title>404</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="assets/css/clouds.css" />
<style>
html , body {
height: 100%;
margin:0;
}
.sky {
width: 100%;
height: 60%;
background:-webkit-gradient(linear, 0 0, 0 bottom, from(#C2E9FF), to(#EBEBFB));
background:-moz-linear-gradient(top,rgba(187,235,251,1),rgba(235,235,251,1));
}
.sea {
width: 100%;
height: 40%;
background:-webkit-gradient(linear, 0 0, 0 bottom, from(#8EC7FF), to(#52A7FF));
background:-moz-linear-gradient(top,rgba(142,199,255,1),rgba(82,167,255,1));
}
.box-img {
position: fixed;
bottom: 39%;
left:50%;
background-size: contain;
margin-left: -120px;
width: 240px;
height: 240px;
background-image: url('/resource/image/404.png');
}
.box-text {
position: absolute;
text-align: center;
color: gray;
width: 100%;
top: 60px;
font-size: 12px;
padding-left: 5px;
}
.box-code {
color: white;
font-size: 40px;
}
</style>
</head>
<body>
<div >
<div class="sky">
<div id="clouds">
<div class="cloud x1"></div>
<div class="cloud x2"></div>
<div class="cloud x3"></div>
<div class="cloud x4"></div>
<div class="cloud x5"></div>
</div>
</div>
<div class="box-img">
<div class="box-text">
<span class="box-code">4 0 4</span>
<br/>网页走失了..
</div>
</div>
<div class="sea"> </div>
</div>
</body>
</html>