Blame view

public/scss/passport/_reset.css 2.82 KB
郭成尧 authored
1 2 3 4 5 6 7 8 9
.passport-reset-page {
    .icon-info:before {
        content: "\e61f";
    }

    .title {
        margin-top: 70px;
        text-align: center;
        color: #fff;
郭成尧 authored
10
        font-size: 30px;
郭成尧 authored
11 12 13 14 15 16 17 18 19 20 21
    }

    .ignore {
        float: right;
        margin-top: -48px;
        margin-right: 60px;
        padding: 12px 32px;
        border-radius: 32px;
        border: 1px solid #fff;
    }
郭成尧 authored
22 23 24 25
    .ignore a {
        color: #fff;
    }
郭成尧 authored
26 27
    .tip {
        text-align: center;
郭成尧 authored
28
        font-size: 22px;
郭成尧 authored
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 67 68 69 70 71
        color: #fff;
        margin-top: 120px;
    }

    .form-group {
        .input-group {
            width: 630px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 30px;
            border: 1px solid #606060;
            border-radius: 16px;
            background-color: #585858;
            position: relative;

            .eye {
                position: absolute;
                top: 17PX;
                right: 10PX;
                width: 19PX;
                height: 12PX;
                background: resolve("passport/eye.png") no-repeat;
                background-size: 100% 100%;

                &.close {
                    background-image: resolve("passport/eye-close.png");
                }
            }
        }

        .input-group:last-child {
            margin-bottom: 0;
        }

        input {
            line-height: 48px;
            padding: 16px 0;
            padding-left: 30px;
            border-radius: 16px;
            font-size: 28px;
            color: #fff;
            background-color: transparent;
            border: none;
郭成尧 authored
72
            width: 100%;
郭成尧 authored
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
        }

        input::-webkit-input-placeholder {
            color: #b0b0b0;
        }
    }

    .reset-form {
        margin-top: 60px;
    }

    .tip-bottom {
        width: 630px;
        margin: 20px auto 0;
        color: #fff;
郭成尧 authored
88
        font-size: 22px;
郭成尧 authored
89
        visibility: hidden;
郭成尧 authored
90 91

        .icon-info {
郭成尧 authored
92
            margin: 20px 20px 0;
郭成尧 authored
93 94 95
        }
    }
郭成尧 authored
96 97 98 99
    .show {
        visibility: visible;
    }
郭成尧 authored
100 101 102 103 104
    .btn-group {
        text-align: center;

        .btn {
            width: 630px;
郭成尧 authored
105
            padding: 25px;
郭成尧 authored
106 107 108 109 110 111 112 113
            background-color: #fff;
            border-radius: 16px;
            color: #444;
        }
    }

    .reset-sure {
        margin-top: 52px;
郭成尧 authored
114 115 116 117 118 119 120 121 122 123 124 125 126

        .active {
            background-color: #78db7e;
            color: #fff;
        }
    }

    .success-icon {
        text-align: center;
        color: #fff;
        margin-top: 120px;

        .iconfont {
郭成尧 authored
127
            font-size: 160px;
郭成尧 authored
128
            color: #b0b0b0;
郭成尧 authored
129 130 131 132 133 134
        }
    }

    .success-tip {
        margin-top: 120px;
        color: #fff;
郭成尧 authored
135
        font-size: 22px;
郭成尧 authored
136 137 138 139
        text-align: center;
    }

    .relogin {
郭成尧 authored
140
        margin-top: 58px;
郭成尧 authored
141 142 143 144 145

        .btn {
            background-color: #78db7e;
            color: #fff;
        }
郭成尧 authored
146 147
    }
}