_index.css 3.23 KB
@import "config";

.passport-page {
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    .input {
        height: $item-height;
        font-size: 16px;
        line-height: 1.2;
        line-height: @height;
        width: 268px;
        border: 1px solid #dbdbdb;
        text-indent: 10px;
        color: #9a9a9a;
        color: rgba(0, 0, 0, 0.5);
    }

    .title {
        font-size: 20px;
        text-align: center;
        width: $item-width;
        color: $theme-color;
        font-weight: bold;
    }

    .pwd-intensity-container {
        width: 270px;
        text-align: right;
        padding-top: 5px;

        &.red {
            .pwd-intensity {
                color: $red;
            }

            .color {
                background: $red;
                color: #fff;
            }
        }

        &.yellow {
            .pwd-intensity {
                color: #f6da1e;
            }

            .color {
                background: #f6da1e;
                color: #fff;
            }
        }

        &.green {
            .pwd-intensity {
                color: #3ee392;
            }

            .color {
                background: #3ee392;
                color: #fff;
            }
        }

        .pwd-intensity {
            height: 15px;
            font-size: 12px;
            background-color: #e8e8e8;
            padding: 0 10px;
            text-align: center;
            color: #b9b9b9;
        }
    }

    .email-autocomplete {
        position: absolute;
        width: 225px;
        top: calc($item-height + 3px);
        padding: 0 10px;
        z-index: 20;
        margin-top: 5px;
        border-radius: 5px;
        cursor: pointer;
        border: 1px solid #fefefe;
        background-color: $theme-color;
        color: white;
        font-size: 18px;

        li {
            padding-top: 10px;
            height: 10px;
            line-height: @height;
        }
    }

    .focus {
        border: 2px solid #000 !important;
    }

    .country-select-list {
        position: absolute;
        top: $item-height;
        width: $item-width;
        background-color: #f8f8f8;
        border: 1px solid #eee;
        z-index: 100;
        font-size: 10px;

        .option {
            height: 20px;
            cursor: pointer;

            span {
                display: inline-block;
                height: 20px;
                line-height: @height;
                font-size: 14px;
            }
        }

        .option:hover {
            background-color: #666;
            color: white;
        }

        .small {
            font-size: 14px;
            margin: 0 3px;
            width: 15px;
        }
    }

    .country-select-header {
        height: $item-height;
        width: 100px;
        border: 2px solid #eee;
        font-size: 16px;
        float: left;
        cursor: pointer;

        .small {
            font-size: 14px;
            height: 40px;
            width: 20px;
            line-height: @height;
        }

        .name {
            display: inline-block;
            height: 40px;
            line-height: @height;
            margin-left: 10px;
        }
    }
}

@import "login";
@import "register";
@import "back";
@import "welcome";
@import "relate";
@import "third";