Blame view

public/scss/common/error.scss 824 Bytes
王水玲 authored
1 2 3
.err-page {
    .err-bg {
        position: fixed;
4 5
        height: 200px;
        width: 200px;
王水玲 authored
6 7
        top: 50%;
        left: 50%;
8 9
        margin-left: -100px;
        margin-top: -100px;
陈峰 authored
10
        background: url("img/common/404.png") no-repeat;
王水玲 authored
11 12
        background-size: 100% 100%;
    }
yyq authored
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

    .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;
        }
    }
王水玲 authored
40
}