All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
42 lines
No EOL
942 B
CSS
42 lines
No EOL
942 B
CSS
/* .video-container {
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
} */
|
|
.video-container {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 0;
|
|
transform: translateY(-50%);
|
|
width: 100%;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
@media only screen and (max-device-width: 600px) {
|
|
.video-container.middle {
|
|
width: 200%;
|
|
height: 150vh;
|
|
left: 0%;
|
|
}
|
|
.video-container.left {
|
|
width: 300%;
|
|
left: 0%;
|
|
}
|
|
.video-container.right {
|
|
width: 200%;
|
|
left: -100%;
|
|
}
|
|
}
|
|
|
|
.video-container video {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
|
|
pointer-events: none;
|
|
-webkit-media-controls: none;
|
|
-webkit-media-controls-play-button: none;
|
|
-webkit-media-controls-timeline: none;
|
|
-webkit-media-controls-current-time-display: none;
|
|
-webkit-media-controls-time-remaining-display: none;
|
|
-webkit-media-controls-toggle-closed-captions-button: none;
|
|
} |