Blame view

public/scss/passport/back-email-new.page.scss 1.86 KB
陈峰 authored
1
@mixin padding-75 {
郭成尧 authored
2 3 4 5 6
    padding-left: 75px;
    padding-right: 75px;
}

$top-bar-font-color: #444;
郭成尧 authored
7
$disable-gray: #b0b0b0;
郭成尧 authored
8 9

.back-email-new-page {
陈峰 authored
10
    @include padding-75;
郭成尧 authored
11
郭成尧 authored
12 13 14 15 16 17 18 19
    .active {
        background-color: #444 !important;
    }

    .hide {
        display: none;
    }
郭成尧 authored
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 58 59 60 61 62 63 64 65
    .iconfont {
        color: #444;
    }

    .top-operation-bar {
        width: 600px;
        height: 50px;
        margin-top: 50px;
        color: $top-bar-font-color;

        > button {
            width: 50px;
            background-color: transparent;
            font-size: 45px;
            overflow: hidden;
            padding: 0;
            text-align: center;

            &.back {
                float: left;
            }

            &.close {
                float: right;
            }
        }

        > .page-title {
            width: 500px;
            font-size: 34px;
            text-align: center;
            display: inline-block;
            margin-top: 7px;
        }
    }

    .back-email-form {
        margin-top: 100px;

        > .form-group {
            border-bottom: 1px solid #e0e0e0;
            height: 50px;
            margin-bottom: 56px;

            > label {
                font-size: 26px;
郭成尧 authored
66
                margin-right: 36px;
郭成尧 authored
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
            }

            > input {
                width: 400px;
                border: none;
                box-shadow: none;
                background-color: transparent;
            }

            > i {
                float: right;
            }

            &.email > .clear {
                color: #e0e0e0;
                margin-right: 8px;
            }
        }

        .back-email-reset-btn {
            width: 600px;
            height: 70px;
            border-radius: 4px;
郭成尧 authored
90
            background-color: $disable-gray;
郭成尧 authored
91 92 93 94 95 96
            margin-top: 100px;
            font-size: 32px;
            color: #fff;
        }
    }
}