@if $use-matrix == true{ /*------------------------------------*\ $MATRIX \*------------------------------------*/ /** * Create a grid of items out of a single list, e.g.: *
* * Extend this object in your theme stylesheet. * * Demo: jsfiddle.net/inuitcss/Y2zrU * */ .matrix{ @extend .block-list; border-left-width:1px; @extend .cf; > li{ float:left; border-right-width:1px; @if $global-border-box == false{ @include vendor(box-sizing, border-box); } } } .matrix__link{ @extend .block-list__link; } /** * The `.multi-list` object is a lot like the `.matrix` object only without the * blocky borders and padding. *