basspistol.com/_sass/_videos.scss

39 lines
520 B
SCSS
Raw Normal View History

2020-09-08 18:07:38 +02:00
/* Background Video */
.fullscreen-bg {
position: absolute;
height: 100%;
width: 100%;
overflow: hidden;
z-index: 0;
background: var(--bg);
top: 0;
left: 0;
right: 0;
z-index: 0;
}
.fullscreen-bg__video {
object-fit: cover;
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
}
#myVideo {
position: absolute;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
2021-07-20 11:28:08 +02:00
}
@media only screen and (max-width: 767px) {
.fullscreen-bg {
display: none;
}
2020-09-08 18:07:38 +02:00
}