Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/monitor/data/scss/bootstrap/helpers/_ratio.scss is written in an unsupported language. File is not indexed.

0001 // Credit: Nicolas Gallagher and SUIT CSS.
0002 
0003 .ratio {
0004   position: relative;
0005   width: 100%;
0006 
0007   &::before {
0008     display: block;
0009     padding-top: var(--aspect-ratio);
0010     content: "";
0011   }
0012 
0013   > * {
0014     position: absolute;
0015     top: 0;
0016     left: 0;
0017     width: 100%;
0018     height: 100%;
0019   }
0020 }
0021 
0022 @each $key, $ratio in $aspect-ratios {
0023   .ratio-#{$key} {
0024     --aspect-ratio: #{$ratio};
0025   }
0026 }