Sha256: 24e7ef0c11e4deb548b514b494ba8d3cdfd8af6eb20e76e607e0ab3dcf5131d6

Contents?: true

Size: 1011 Bytes

Versions: 15

Compression:

Stored size: 1011 Bytes

Contents

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

@import "layout";

/* -------------------------------------------------------------------------*/
/* Layout: mobile first */

body {
  margin: 0;
  padding: 0;
}

.page {
  @include master( $columns-large ); // Sets max-width
  padding: {
    left: $gutter-width / 2;
    right: $gutter-width / 2;
  }
}

.grid {
  @include container( $columns-small );
  @include at-breakpoint( $breakpoint-medium ) {
    @include container( $columns-medium, $at-breakpoint: true );
  }
  @include at-breakpoint( $breakpoint-large ) {
    @include container( $columns-large, $at-breakpoint: true );
  }
}

.column {
  @include span-columns( 4, $context: $columns-small);
  @include at-breakpoint( $breakpoint-medium ) {
    @include span-columns( 4, $context: $columns-medium, $at-breakpoint: true);
  }
  @include at-breakpoint( $breakpoint-large ) {
    @include span-columns( 4, $context: $columns-large, $at-breakpoint: true);
  }
}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
ezy-0.2.9 templates/project/screen.scss
ezy-0.2.8 templates/project/screen.scss
ezy-0.2.7.alpha templates/project/screen.scss
ezy-0.2.6.alpha templates/project/screen.scss
ezy-0.2.0 templates/project/screen.scss
ezy-0.1.1 templates/project/screen.scss
ezy-0.2.0.alpha templates/project/screen.scss
ezy-0.1.0 templates/project/screen.scss
ezy-0.0.8 templates/project/screen.scss
ezy-0.0.7 templates/project/screen.scss
ezy-0.0.6 templates/project/screen.scss
ezy-0.0.5 templates/project/screen.scss
ezy-0.0.4 templates/project/screen.scss
ezy-0.0.3 templates/project/screen.scss
ezy-0.0.2 templates/project/screen.scss