main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
399 bytes
|
Line | |
---|
1 | // Credit: Nicolas Gallagher and SUIT CSS.
|
---|
2 |
|
---|
3 | .ratio {
|
---|
4 | position: relative;
|
---|
5 | width: 100%;
|
---|
6 |
|
---|
7 | &::before {
|
---|
8 | display: block;
|
---|
9 | padding-top: var(--#{$prefix}aspect-ratio);
|
---|
10 | content: "";
|
---|
11 | }
|
---|
12 |
|
---|
13 | > * {
|
---|
14 | position: absolute;
|
---|
15 | top: 0;
|
---|
16 | left: 0;
|
---|
17 | width: 100%;
|
---|
18 | height: 100%;
|
---|
19 | }
|
---|
20 | }
|
---|
21 |
|
---|
22 | @each $key, $ratio in $aspect-ratios {
|
---|
23 | .ratio-#{$key} {
|
---|
24 | --#{$prefix}aspect-ratio: #{$ratio};
|
---|
25 | }
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.