fifty-shades-of-bully/src/css/video.css

42 lines
942 B
CSS
Raw Normal View History

2025-04-10 23:56:31 +07:00
/* .video-container {
height: 100vh;
overflow: hidden;
} */
.video-container {
position: fixed;
top: 50%;
left: 0;
transform: translateY(-50%);
width: 100%;
2025-04-10 23:56:31 +07:00
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%;
2025-04-10 23:56:31 +07:00
}
}
.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;
}