Blame view

static/sass/product/_suspend-cart.scss 613 Bytes
xuqi authored
1 2 3 4 5 6 7 8 9 10 11 12
.suspend-cart {
    position: fixed;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    text-align: center;
    right: 15px;
    bottom: 70px;
    z-index: 10;
13 14 15 16 17 18
    a {
        display: block;
        width: 100%;
        height: 100%;
    }
xuqi authored
19 20
    .iconfont {
        color: #fff;
xuqi authored
21
        font-size: 18px;
xuqi authored
22 23 24 25 26 27 28 29 30 31 32 33 34
    }

    .cart-count {
        position: absolute;
        width: 18px;
        height: 18px;
        line-height: 18px;
        border-radius: 50%;
        background: #f00;
        top: 0;
        right: 0;
        color: #fff;
    }
35
}