Sha256: 0223e8ede1284c41298cde935c73cfcf7d664f359919367a99f2242fb5bacb2d

Contents?: true

Size: 1.03 KB

Versions: 19

Compression:

Stored size: 1.03 KB

Contents

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

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

$column-width: 60px;
$gutter-width: 30px;
$total-columns: 12;
$is-fluid: false;

.page {
  @include master( $total-columns ); // Sets max-width
}

.grid {
  @include container();
}

/* -------------------------------------------------------------------- *
 * Static columns: not using grid-init()
 */

.span-columns-2 {
  @include span-columns( 2 );
}

.span-columns-4 {
  @include span-columns( 4 );
}

.span-columns-6 {
  @include span-columns( 6 );
}

/* -------------------------------------------------------------------- *
 * Static columns: using grid-init()
 */

@include grid-init();

.span-columns-2 {
  @include span-columns( 2 );
}

.span-columns-4 {
  @include span-columns( 4 );
}

.span-columns-6 {
  @include span-columns( 6 );
}

/* -------------------------------------------------------------------- *
 * Grid colum spanning more columns than layout
 */

.span-columns-18 {
  @include span-columns( 18 );
}


Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
ezy-0.4.2.beta test/scss/grid/static.scss
ezy-0.3.3 test/scss/grid/static.scss
ezy-0.3.2 test/scss/grid/static.scss
ezy-0.4.1.beta test/scss/grid/static.scss
ezy-0.4.0.beta test/scss/grid/static.scss
ezy-0.3.1.beta test/scss/grid/static.scss
ezy-0.3.0.beta test/scss/grid/static.scss
ezy-0.2.9 test/scss/grid/static.scss
ezy-0.2.8 test/scss/grid/static.scss
ezy-0.2.7.alpha test/scss/grid/static.scss
ezy-0.2.6.alpha test/scss/grid/static.scss
ezy-0.2.0 test/scss/grid/static.scss
ezy-0.1.1 test/scss/grid/static.scss
ezy-0.2.0.alpha test/scss/grid/static.scss
ezy-0.1.0 test/scss/grid/static.scss
ezy-0.0.8 test/scss/grid/static.scss
ezy-0.0.7 test/scss/grid/static.scss
ezy-0.0.6 test/scss/grid/static.scss
ezy-0.0.5 test/scss/grid/static.scss