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