_home-video.scss 1.61 KB
.video-play-button {
    display               : block;

    -moz-border-radius    : 999px;
    -webkit-border-radius : 999px;
    border-radius         : 999px;

    background            : #ffffff;
    opacity               : .5;

    position              : absolute;
    z-index               : 99999;

    width                 : 60px;
    height                : 60px;

    -webkit-transition    : all 0.5s linear;
    -moz-transition       : all 0.5s linear;
    -o-transition         : all 0.5s linear;
    transition            : all 0.5s linear;

    top                   : calc(50% - 20px);
    left                  : calc(50% + 55px);

    @media screen and (min-width : $bp-middle) {
        width  : 100px;
        height : 100px;

        top    : calc(50% - 35px);
        left   : calc(50% - 25px);
    }

    &.page-video-button {
            display : none;
        @media screen and (min-width : 1080px) {
            left:calc(50% - -100px);
            display : block;
        }
    }

    &:hover {
        opacity : 1;
    }

    .play-arrow {
        font-size    : 0;

        display      : block;
        position     : absolute;
        top          : calc(50% - 15px);
        left         : calc(50% - 10px);

        width        : 0;
        height       : 0;
        border-width : 15px 0 15px 23.3px;
        border-style : solid;
        border-color : transparent transparent transparent #6d6e70;

        @media screen and (min-width : $bp-middle) {
            border-width : 25px 0 25px 43.3px;

            top          : calc(50% - 22px);
            left         : calc(50% - 16px);
        }
    }
}