_error.css
1.28 KB
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
.err-page {
width: 100%;
height: 100%;
background: #fff;
.err-status {
position: fixed;
top: 401px;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
.err-404 {
width: 300px;
height: 126px;
background: resolve("error/404.svg") no-repeat;
margin: 0 auto;
}
.err-500 {
width: 300px;
height: 126px;
background: resolve("error/500.svg") no-repeat;
margin: 0 auto;
}
}
.tips {
position: fixed;
top: 600px;
left: 0;
right: 0;
width: 100%;
margin: 0 auto;
text-align: center;
a,
span {
display: block;
}
.tip {
font-size: 38px;
color: #b0b0b0;
}
.tips-english {
font-size: 22px;
color: #b0b0b0;
margin-top: 20px;
}
.home {
width: 65%;
margin: 0 auto;
margin-top: 80px;
height: 100px;
color: #fff;
background: #000;
text-align: center;
font-size: 28px;
line-height: 100px;
}
}
}