Sha256: efc8ba9a0e5d5bd866dd318a1e71fd068d67cdfb7f0b1efea04741c4ed6d5467

Contents?: true

Size: 1.17 KB

Versions: 397

Compression:

Stored size: 1.17 KB

Contents

// Container widths
//
// Set the container width, and override it for fixed navbars in media queries.

@if $enable-container-classes {
  // Single container class with breakpoint max-widths
  .container,
  // 100% wide container at all breakpoints
  .container-fluid {
    @include make-container();
  }

  // Responsive containers that are 100% wide until a breakpoint
  @each $breakpoint, $container-max-width in $container-max-widths {
    .container-#{$breakpoint} {
      @extend .container-fluid;
    }

    @include media-breakpoint-up($breakpoint, $grid-breakpoints) {
      %responsive-container-#{$breakpoint} {
        max-width: $container-max-width;
      }

      // Extend each breakpoint which is smaller or equal to the current breakpoint
      $extend-breakpoint: true;

      @each $name, $width in $grid-breakpoints {
        @if ($extend-breakpoint) {
          .container#{breakpoint-infix($name, $grid-breakpoints)} {
            @extend %responsive-container-#{$breakpoint};
          }

          // Once the current breakpoint is reached, stop extending
          @if ($breakpoint == $name) {
            $extend-breakpoint: false;
          }
        }
      }
    }
  }
}

Version data entries

397 entries across 396 versions & 18 rubygems

Version Path
jekyll-theme-centos-2.3.0.beta.126 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.125 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.121 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.120 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.119 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.118 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.117 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.116 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.115 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.114 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.113 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.112 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.111 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.110 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.109 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.108 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.104 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.102 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.101 _sass/bootstrap/_containers.scss
jekyll-theme-centos-2.3.0.beta.100 _sass/bootstrap/_containers.scss