Sha256: 2408911e32d9b0816d091857d400ea847a272764e7bbc645d099cdf2f9b642c3

Contents?: true

Size: 1.2 KB

Versions: 19

Compression:

Stored size: 1.2 KB

Contents

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

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

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

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

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

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

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

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

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

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

@include grid-init();

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

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

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

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

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




Version data entries

19 entries across 19 versions & 1 rubygems

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