Sha256: 1b9abd4ef54a2eecf821b57447be4d125af4a2b40daf92d83691a61cc9452499
Contents?: true
Size: 899 Bytes
Versions: 88
Compression:
Stored size: 899 Bytes
Contents
// See skeleton file for copyright info @import dependencies // don't remove me @import functions // your custom functions // ---------- ADD CUSTOM MIXINS BELOW HERE // @mixin myMixin() { } // grid ( [ number $width: 960px, [ bool $fluid: false, [ number $gutterWidth: 20px, [ number $colCount: 16 ] ] ] ] ) =grid($width: $baseWidth, $fluid: $isFluid, $gutterWidth: $baseGutterWidth, $colCount: $baseColCount) @if $fluid == true +_fluidGrid($colCount) @else // we no longer need to set a value for $colWdith because it is generated dynamically right here! // @see https://github.com/atomicpages/skeleton-sass/issues/7 $colWidth: $width / $colCount - $gutterWidth +_fixedGrid($width, $colWidth, $gutterWidth, $colCount) // mobileGrid ( [ number $width: 960px, [ number $colCount: 16 ] ] ) =mobileGrid($width: $baseWidth, $colCount: $baseColCount) +_mobileGrid($width, $colCount)
Version data entries
88 entries across 88 versions & 1 rubygems