video.scss 719 Bytes
Newer Older
1 2 3 4 5 6 7
$tabHeight: 44px;

.play {
    .video {
        width: 100%;
        height: 215px;
        background-color: $black;
8 9 10 11 12

        video {
            width: 100%;
            height: 100%;
        }
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    }

    .tab {
        height: $tabHeight;
        max-height: $tabHeight;
        line-height: $tabHeight;
        text-align: center;
        background: #F7F9FC;
        flex: 1 0 auto;
        display: flex;
        justify-content: center;

        & > div {
            flex: 1 0 auto;
        }

        a {
            display: inline-block;
            height: $tabHeight;
            font-size: $font_16;
        }
    }

    .active {
        color: $active;
        border-bottom: 1px solid $active;
    }

}