Sha256: 1f87852379017623ac79ee76d920b5cbf617f3eefea5646dfdfcf4aa2e62cc5d

Contents?: true

Size: 938 Bytes

Versions: 11

Compression:

Stored size: 938 Bytes

Contents

// ---------------------------------------------------------------------------
// Imports

@import "../../../sass/ezy/grid";

$column-width: 4em;
$gutter-width: 2em;
$total-columns: 12;

// Widths for use in media queries
$width-small:   context-width( 4 );
$width-medium:  context-width( 8 );
$width-large:   context-width( $total-columns );

// Defining media query breakpoints
$breakpoint-small:  set-breakpoint( $max: 20em );
$breakpoint-medium: set-breakpoint( $min: 20.1em );
$breakpoint-large:  set-breakpoint( $min: 30em, $legacy-support: true ); // Support for legacy browsers

.page {
  @include master( $total-columns ); // Sets max-width
  font-size: 14px;
  @include at-breakpoint( $breakpoint-medium ) {
    font-size: 16px;
  }
  @include at-breakpoint( $breakpoint-large ) {
    font-size: 18px;
  }
}

.grid {
  @include container( $total-columns );
}

.column {
  @include span-columns( 4, $context: $total-columns );
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ezy-0.4.2.beta test/scss/grid/elastic.scss
ezy-0.3.3 test/scss/grid/elastic.scss
ezy-0.3.2 test/scss/grid/elastic.scss
ezy-0.4.1.beta test/scss/grid/elastic.scss
ezy-0.4.0.beta test/scss/grid/elastic.scss
ezy-0.3.1.beta test/scss/grid/elastic.scss
ezy-0.3.0.beta test/scss/grid/elastic.scss
ezy-0.2.9 test/scss/grid/elastic.scss
ezy-0.2.8 test/scss/grid/elastic.scss
ezy-0.2.7.alpha test/scss/grid/elastic.scss
ezy-0.2.6.alpha test/scss/grid/elastic.scss