31 lines
307 B
CSS
31 lines
307 B
CSS
|
/*
|
||
|
|
||
|
UTILITIES
|
||
|
|
||
|
*/
|
||
|
|
||
|
.aspect-ratio {
|
||
|
height: 0;
|
||
|
padding-top: 56.25%;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.aspect-ratio--object {
|
||
|
bottom: 0;
|
||
|
height: 100%;
|
||
|
left: 0;
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
z-index: 100;
|
||
|
}
|
||
|
|
||
|
.overflow-container {
|
||
|
overflow-y: scroll;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|