Sha256: 838eabeddffb9cf87de3c40c7e4bf0441f7d4d15f2263dbcd0f98058bd8be399
Contents?: true
Size: 438 Bytes
Versions: 4
Compression:
Stored size: 438 Bytes
Contents
$grid-columns: 12 !default; $grid-width: (100% / $grid-columns) !default; // Calculate a width using a grid cell @function grid-span($n) { @return $grid-width * $n; } // Styles for the row containing the columns @mixin grid-row() { text-align: left; width: 100%; max-width: 100%; @include clear-fix; } // Styles for the column @mixin grid-column() { position: relative; min-height: 1px; float: left; }
Version data entries
4 entries across 4 versions & 1 rubygems