2014-03-07 15:18:13 +08:00
|
|
|
// Credit: Nicolas Gallagher and SUIT CSS.
|
|
|
|
|
2020-09-23 07:30:00 +08:00
|
|
|
.ratio {
|
2014-03-07 15:18:13 +08:00
|
|
|
position: relative;
|
2016-04-15 16:40:51 +08:00
|
|
|
width: 100%;
|
2014-03-07 15:18:13 +08:00
|
|
|
|
2016-04-15 16:40:51 +08:00
|
|
|
&::before {
|
|
|
|
display: block;
|
2020-09-22 05:15:15 +08:00
|
|
|
padding-top: var(--aspect-ratio);
|
2016-04-15 16:40:51 +08:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
2020-09-24 02:06:21 +08:00
|
|
|
> * {
|
2014-03-07 15:18:13 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2014-12-12 04:05:29 +08:00
|
|
|
left: 0;
|
2014-03-07 15:18:13 +08:00
|
|
|
width: 100%;
|
2014-12-12 04:05:29 +08:00
|
|
|
height: 100%;
|
2014-03-07 15:18:13 +08:00
|
|
|
}
|
2015-02-03 01:26:30 +08:00
|
|
|
}
|
2014-03-07 15:18:13 +08:00
|
|
|
|
2020-09-23 07:30:00 +08:00
|
|
|
@each $key, $ratio in $aspect-ratios {
|
|
|
|
.ratio-#{$key} {
|
2020-09-22 05:15:15 +08:00
|
|
|
--aspect-ratio: #{$ratio};
|
2016-04-15 16:40:51 +08:00
|
|
|
}
|
2015-11-24 11:50:38 +08:00
|
|
|
}
|