source: Application/ocrent/wwwroot/lib/bootstrap/scss/helpers/_ratio.scss@ f5f7c24

Last change on this file since f5f7c24 was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • 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.