Sha256: 1755305a434828f63cc1ae8cf4094f5d7a09108b969948cd6ac7018ccfdcecea

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

/*------------------------------------*\
    $GRID
\*------------------------------------*/
/**
 * Grid definition based on the bootstrap grid. 
 * http://twitter.github.io/bootstrap/scaffolding.html#gridSystem
 * 
 * Designed and built @kurenn based
 */


// Reset utility classes due to specificity
[class*="col-"].hide,
.row [class*="col-"].hide {
  display: none;
}

[class*="col-"].pull-right,
.row [class*="col-"].pull-right {
  float: right;
}

.row {
  text-rendering: optimizespeed;
  @include clearfix();

  [class*="col-"]:first-child {
    margin-left: 0px;
  }
}

.row + .row {
  margin-top: 2px;
}

//Borders and paddings are applied inside the div element
//This prevents the columns to stack by a border or padding
[class*="col-"] {
  zoom: 1;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
  float: left;
  padding: 8px;
}

@include build-column-grids;

@media (max-width: 767px) {
  .row > [class *= "col-"] {
    width: 100%;
    margin-left: 0;
    margin-bottom: 2px;
  }

  .container-center {
    width: 95%;
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
furatto-0.0.3 app/assets/stylesheets/furatto/_grid.scss
furatto-0.0.2 vendor/assets/stylesheets/furatto/_grid.scss