input.scss 568 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9
.input-wrapper {
    position: relative;
    width: 300px;
    height: 46px;
    margin: 0 auto;

    .input {
        width: 100%;
        height: 100%;
zhanghaozhe committed
10
        padding: 15px 0 15px 34px;
zhanghaozhe committed
11 12 13 14 15 16 17 18
        border: 1px solid $bg_ccc;
        border-radius: 3px;
        -webkit-appearance: none;

        &::-webkit-input-placeholder {
            font-size: $font_16;
            color: $color_999;
        }
19 20 21 22 23 24 25
    }
    .iconfont {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: $font_20;
        color: $color_bbb;
zhanghaozhe committed
26 27
    }
}