-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
79 lines (71 loc) · 1.91 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
<!DOCTYPE html>
<html lang="zh-CN,en,default" class="loading">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>404 Not Found</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="google" content="notranslate" />
<meta name="keywords" content="棕果核,个人博客,图像托管,">
<meta name="author" content="棕果核">
<link rel="icon" href="/Blog/Website/icon/logo.png">
<style type="text/css">
* {
margin: 0;
padding: 0;
}
.bimg {
width: 100%;
height: 100%;
background-image: url('/blog/website/cover.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
-webkit-background-size: cover;
-o-background-size: cover;
position: fixed;
top: 0;
left: 0;
z-index: -30;
zoom: 1;
}
.zz {
background-image: none;
background-color: rgba(0, 0, 0, .8);
zoom: 2;
}
.content {
width: 100%;
height: 100%;
position: absolute;
text-align: center;
color: #fff;
}
.content h1 {
margin-top: 35vh;
font-size: 3rem;
font-weight: 700;
letter-spacing: 3vh;
}
.content p {
margin-top: 20px;
font-size: 2rem;
margin-bottom: 50px;
letter-spacing: 3vh;
}
</style>
</head>
<body>
<div class="bimg"></div>
<div class="bimg zz"></div>
<div class="content">
<h1>404 Not Found</h1>
<p>
抱歉,路径出错
</p>
</div>
</body>
</html>