23 lines
286 B
SCSS
23 lines
286 B
SCSS
|
.video-player {
|
||
|
position: relative;
|
||
|
padding-top: 56.25%;
|
||
|
|
||
|
@include media-query('md') {
|
||
|
.post & {
|
||
|
padding-top: 66%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
> iframe {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.post & {
|
||
|
padding-top: 63%;
|
||
|
}
|
||
|
}
|