error.scss
824 Bytes
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
.err-page {
.err-bg {
position: fixed;
height: 200px;
width: 200px;
top: 50%;
left: 50%;
margin-left: -100px;
margin-top: -100px;
background: url("img/common/404.png") no-repeat;
background-size: 100% 100%;
}
.err-refresh {
margin-top: -250px;
}
.refresh-wrap {
width: 460px;
position: absolute;
left: 50%;
top: 100%;
margin-left: -230px;
text-align: center;
.refresh-msg {
line-height: 1.4;
padding: 20px 0;
}
.refresh-btn {
width: 200px;
line-height: 60px;
background-color: #414141;
display: block;
color: #fff;
margin: 10px auto;
}
}
}