set-password.scss 1.31 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.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;

21 22 23 24 25 26 27 28 29
        span {
            vertical-align: middle;
            color: $active;
        }

        input{
            -webkit-appearance: none;
            border: none;
            outline: 0;
zhanghaozhe committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
            margin-right: 3px;
            font-size: 21px;
            vertical-align: middle;

            &.iconfont {
                color: $active;
            }

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

                &::before {
                    content: '';
                    display: inline-block;
45 46
                    width: 17px;
                    height: 17px;
zhanghaozhe committed
47 48 49 50 51 52 53 54 55 56 57 58 59 60
                    border: 1px solid $border_ccc;
                    border-radius: 50%;
                }

            }
        }
    }

    .skip {
        margin-top: 84px;
        font-size: $font_14;
        color: $color_999;
        text-align: center;
    }
61 62 63 64 65 66 67

    .input-wrapper {
        input {
            padding-left: 17px;
        }
    }

zhanghaozhe committed
68
}