mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
41 lines
No EOL
672 B
SCSS
41 lines
No EOL
672 B
SCSS
#background-video {
|
|
position: absolute;
|
|
top: -150px;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
z-index: -100;
|
|
height: 700px;
|
|
overflow: hidden;
|
|
.background-video {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
@media (min-aspect-ratio: 16/9) {
|
|
.background-video {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
@media (max-aspect-ratio: 16/9) {
|
|
.background-video {
|
|
width: auto;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
#background-video {
|
|
background: url('../img/Home-BG.jpg') center center / cover no-repeat;
|
|
.background-video {
|
|
display: none;
|
|
}
|
|
}
|
|
} |