set-password.scss 1.1 KB
Newer Older
zhanghaozhe committed
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
.set-password {
    position: relative;
    padding: 35px 38px;

    .title {
        margin-bottom: 12px;
        font-size: $font_12;
        color: $color_666;
    }

    .btn-active {
        margin-bottom: 20px;
        background: $active;
        color: $white;
    }

    .user-agreement {
        line-height: 30px;

        i {
            margin-right: 3px;
            font-size: 21px;
            vertical-align: middle;

            &.iconfont {
                color: $active;
            }

            &.disagree {
                padding: 2px;
                padding-top: 4px;

                &::before {
                    content: '';
                    display: inline-block;
                    width: 19px;
                    height: 19px;
                    border: 1px solid $border_ccc;
                    border-radius: 50%;
                }

            }
        }

        span {
            vertical-align: middle;
            color: $active;
        }
    }

    .skip {
        margin-top: 84px;
        font-size: $font_14;
        color: $color_999;
        text-align: center;
    }
}