Blame view

public/scss/channel/left-right.scss 828 Bytes
ccbikai authored
1 2 3 4
.left-right-thumb-row {
    background-color: #fff;
    text-align: center;
    margin-bottom: 30px;
5
    padding: 30px 28px;
ccbikai authored
6
    border-bottom: 1px solid #e0e0e0;
7
    font-size: 0;
ccbikai authored
8 9 10

    .thumb-row-box {
        display: inline-block;
ccbikai authored
11 12
        width: 276px;
        height: 134px;
ccbikai authored
13 14 15 16
        border-radius: 0;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
17
        margin: 0;
ccbikai authored
18 19 20 21 22 23 24

        &.first {
            margin: 0 !important;
        }
    }

    .left-thumb-row-box {
ccbikai authored
25
        height: 296px;
ccbikai authored
26 27
    }
28 29 30 31
    .left-container {
        float: left;
    }
ccbikai authored
32
    .right-container {
33
        float: right;
ccbikai authored
34 35
        width: 276px;
        height: 296px;
ccbikai authored
36
        border-radius: 4px;
37
        margin: 0;
ccbikai authored
38 39

        .right-thumb-row-box {
ccbikai authored
40
            margin: 28px 0 0;
ccbikai authored
41 42 43
        }
    }
}