This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin set-columns($numCols, $margin:0, $padding-sides:0) { | |
$afterPadding: 100% - (($numCols - 1) * $margin); | |
float: left; | |
width: $afterPadding/$numCols; | |
margin-right: $margin; | |
padding-left: $padding-sides/2; | |
padding-right: $padding-sides/2; | |
&:nth-of-type(#{$numCols}n + #{$numCols}) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Matches Bootstrap 3 | |
*/ | |
$bp-xs : max-width 767px; // Mobile | |
$bp-sm : 768px 991px; // Tablet - Portrait | |
$bp-md : 992px 1199px; // Tablet - Landscape | |
$bp-lg : min-width 1200px; // Desktop | |
/** | |
By Device Name/BS3 |
NewerOlder