Sha256: 3c65e809b83fd4ae6599d701cc39535561cfd8445a23e06b9236f52d6b063ddb

Contents?: true

Size: 379 Bytes

Versions: 11

Compression:

Stored size: 379 Bytes

Contents

// Credit: Nicolas Gallagher and SUIT CSS.

.ratio {
  position: relative;
  width: 100%;

  &::before {
    display: block;
    padding-top: var(--aspect-ratio);
    content: "";
  }

  > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@each $key, $ratio in $aspect-ratios {
  .ratio-#{$key} {
    --aspect-ratio: #{$ratio};
  }
}

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
infotorg-api-jekyll-theme-0.1.8 _sass/bootstrap/helpers/_ratio.scss
infotorg-api-jekyll-theme-0.1.7 _sass/bootstrap/helpers/_ratio.scss
infotorg-api-jekyll-theme-0.1.5 _sass/bootstrap/helpers/_ratio.scss
bootstrap-5.0.0.beta1 assets/stylesheets/bootstrap/helpers/_ratio.scss
infotorg-api-jekyll-theme-0.1.4 _sass/bootstrap/helpers/_ratio.scss
infotorg-api-jekyll-theme-0.1.3 _sass/bootstrap/helpers/_ratio.scss
infotorg-api-jekyll-theme-0.1.2 _sass/bootstrap/helpers/_ratio.scss
infotorg-api-jekyll-theme-0.1.1 _sass/bootstrap/helpers/_ratio.scss
infotorg-api-jekyll-theme-0.1.0 _sass/bootstrap/helpers/_ratio.scss
bootstrap-5.0.0.alpha3 assets/stylesheets/bootstrap/helpers/_ratio.scss
bootstrap-5.0.0.alpha2 assets/stylesheets/bootstrap/helpers/_ratio.scss