dash-website/_sass/_video.scss
2016-07-12 09:26:33 -04:00

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;
}
}
}