-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
85 lines (68 loc) · 1.69 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
<!DOCTYPE html> <html class="font-primary"> <head> <title>404 – Page Not Found</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <style> *,
*::after,
*::before {
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-family: sans-serif;
font-size: 14px;
}
body {
margin: 0;
font: 1rem/1.6 "Microsoft YaHei", Helvetica, Arial, sans-serif;
color: #333;
background-color: #f1f1f1;
}
a {
color: #333;
text-decoration: none;
margin: 0 10px;
}
a:hover {
text-decoration: none;
}
.g-text-center {
text-align: center;
}
.g-font-size-140 {
font-size: 140px;
}
.g-line-height-1 {
line-height: 1;
}
h1 {
font: 1.5rem/1 "Microsoft YaHei", Helvetica, Arial, sans-serif;
margin: 0 0 15px;
}
.g-min-height-100vh {
min-height: 100vh;
}
.g-flex-centered {
display: flex;
align-items: center;
justify-content: center;
-moz-box-align: center;
-moz-box-pack: center;
}
.g-flex-centered-item {
flex: 1 1 0;
-moz-box-flex: 1;
}
.g-mb-10 {
margin-bottom: 10px;
}
.g-pa-15 {
padding: 15px;
}
.g-height-90--2xs {
height: 120px;
}
@media (max-width: 444px) {
.g-font-size-100--2xs {
font-size: 100px;
}
.g-height-90--2xs {
height: 90px;
}
} </style> </head> <body> <main class="g-min-height-100vh g-flex-centered g-pa-15"> <div class="g-text-center g-flex-centered-item"> <h1>你来错地方了!</h1> <div class="g-font-size-140 g-font-size-100--2xs g-line-height-1 g-mb-10"> 404 </main> </body> </html>