2020-08-03 21:40:11 +02:00
|
|
|
/* Background Video */
|
|
|
|
.fullscreen-bg {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
2020-08-10 12:47:49 +02:00
|
|
|
z-index: 0;
|
2020-08-10 17:31:05 +02:00
|
|
|
background: var(--bg);
|
2020-08-10 12:47:49 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 0;
|
|
|
|
|
2020-08-03 21:40:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.fullscreen-bg__video {
|
2020-08-10 12:47:49 +02:00
|
|
|
object-fit: cover;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
|
2020-08-03 21:40:11 +02:00
|
|
|
}
|
2020-08-05 10:48:20 +02:00
|
|
|
#myVideo {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
2020-08-10 12:47:49 +02:00
|
|
|
|
2020-08-05 10:48:20 +02:00
|
|
|
}
|