51 lines
No EOL
999 B
SCSS
51 lines
No EOL
999 B
SCSS
/* Video Area css
|
|
============================================================================================ */
|
|
.video_area{
|
|
position: relative;
|
|
text-align: center;
|
|
margin-top: 65px;
|
|
margin-bottom: 35px;
|
|
a{
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Simple fade transition,
|
|
*/
|
|
.mfp-fade.mfp-bg {
|
|
opacity: 0;
|
|
-webkit-transition: all 0.15s ease-out;
|
|
-moz-transition: all 0.15s ease-out;
|
|
transition: all 0.15s ease-out;
|
|
}
|
|
.mfp-fade.mfp-bg.mfp-ready {
|
|
opacity: 0.8;
|
|
}
|
|
.mfp-fade.mfp-bg.mfp-removing {
|
|
opacity: 0;
|
|
}
|
|
|
|
.mfp-fade.mfp-wrap .mfp-content {
|
|
opacity: 0;
|
|
-webkit-transition: all 0.15s ease-out;
|
|
-moz-transition: all 0.15s ease-out;
|
|
transition: all 0.15s ease-out;
|
|
}
|
|
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
|
|
opacity: 1;
|
|
}
|
|
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
|
|
opacity: 0;
|
|
}
|
|
/* End Video Area css
|
|
============================================================================================ */ |