-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
110 lines (99 loc) · 3.52 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
<!DOCTYPE html>
<html lang='zh-cmn-Hans'>
<head>
<title>404 Page not found - 热门话题排行榜</title>
<meta content="404 Page not found - 热门话题排行榜" property="og:title">
<meta name="description" content="查看历史微博和知乎上的热门话题排行榜。">
<meta property="og:description" content="查看历史微博和知乎上的热门话题排行榜。">
<meta name="twitter:description" content="查看历史微博和知乎上的热门话题排行榜。">
<meta name="keywords" content="微博,知乎,热搜,热门话题,排行榜,历史新闻">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, user-scalable=yes">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="max-snippet:-1, max-image-preview:large, max-video-preview:-1" name="robots">
<meta content="#598cff" name="theme-color">
<meta content="telephone=no" name="format-detection">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="summary_large_image" name="twitter:card">
<meta content="@Seiriryu" name="twitter:site">
<meta content="@Seiriryu" name="twitter:creator">
<link rel="icon" href="./favicon.ico">
<style>
body {
font-family: Arial, sans-serif;
font-size: 16px;
background-image: url('./static/background.jpg');
/*background-size: cover;*/
background-position: center;
}
h1 {
text-align: center;
margin-top: 40px;
color: white;
text-shadow: 2px 2px 4px #000000;
font-size: 36px;
font-weight: bold;
}
ul {
list-style-type: none;
padding: 0;
margin: 40px auto;
width: 80%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
li {
width: 30%;
margin-bottom: 20px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
text-align: center;
border-radius: 10px;
box-shadow: 2px 2px 4px #000000;
color: black;
font-size: 20px;
font-weight: bold;
transition: all 0.5s;
}
li:hover {
transform: scale(1.1);
box-shadow: 4px 4px 8px #000000;
cursor: pointer;
}
.history-search {
font-size: 2em;
color: #fff;
text-shadow: 2px 2px 4px #000000;
}
@media screen and (max-width: 959px) {
li {
width: 80%;
}
}
@media screen and (max-width: 480px) {
li {
width: 80%;
}
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-E4CG1XRFV6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-E4CG1XRFV6');
</script>
</head>
<body>
<h1 style="font-size: 5em;">404</h1>
<div>
<div style="display:flex;justify-content: center; ">
<a href='/' rel='follow' class="history-search">返回主页</a>
</div>
<div style="display:flex;justify-content: center; font-size: 2em;">
<h2>没有找到相关知乎和微博新闻</h2>
</div>
</div>
</body>
</html>