Sha256: 655d109490da43f35c60aaa6d485aecb35510d41cfe18e7b2a399e9c5899f5b9

Contents?: true

Size: 1.07 KB

Versions: 15

Compression:

Stored size: 1.07 KB

Contents

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

@import "ezy";

// -----------------------------------------------------------
// Required grid settings

$column-width: 40px;  // column width
$gutter-width: 30px;  // space between columns
$total-columns: 12;   // max number of columns occuring
@include grid-init; // doing some background magic for you

// -----------------------------------------------------------
// Grid layouts (column count)

$columns-small:   4;
$columns-medium:  8;
$columns-large:   12;

// -----------------------------------------------------------
// Responsive settings

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

// Defining media query breakpoints
$breakpoint-small:  set-breakpoint( $max: $width-small );
$breakpoint-medium: set-breakpoint( $min: $width-small+1 );
$breakpoint-large:  set-breakpoint( $min: $width-medium+1, $legacy-support: true ); // Support for legacy browsers

Version data entries

15 entries across 15 versions & 1 rubygems

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