domsPlace/public/styles/components/_image-section.scss

35 lines
525 B
SCSS

/*
* Image Section
* Styles for Image Sections, usually contains videos (hmmmm).
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/05/11
*/
.c-image-section {
position: relative;
&__image {
width: 100%;
}
&.is-full {
.c-image-section__image {
@include t-absolute-fill();
object-fit: cover;
object-position: bottom center;
}
}
&__content {
@include t-absolute-fill();
&-inner {
position: relative;
height: 100%;
width: 100%;
}
}
}