Update to site
This commit is contained in:
parent
3345fa5897
commit
b0bdfe2fe9
244 changed files with 11618 additions and 12 deletions
23
sass/inuitcss/objects/_columns.scss
Normal file
23
sass/inuitcss/objects/_columns.scss
Normal file
|
@ -0,0 +1,23 @@
|
|||
@charset "UTF-8";
|
||||
@if $use-columns == true{
|
||||
|
||||
/*------------------------------------*\
|
||||
$COLUMNS
|
||||
\*------------------------------------*/
|
||||
/**
|
||||
* Here we can set elements in columns of text using CSS3, e.g.:
|
||||
*
|
||||
<p class=text-cols--2>
|
||||
*
|
||||
* Demo: jsfiddle.net/inuitcss/E26Yd
|
||||
*
|
||||
*/
|
||||
%text-cols{
|
||||
@include vendor(column-gap, $base-spacing-unit);
|
||||
}
|
||||
.text-cols--2 { @extend %text-cols; @include vendor(column-count, 2); }
|
||||
.text-cols--3 { @extend %text-cols; @include vendor(column-count, 3); }
|
||||
.text-cols--4 { @extend %text-cols; @include vendor(column-count, 4); }
|
||||
.text-cols--5 { @extend %text-cols; @include vendor(column-count, 5); }
|
||||
|
||||
}//endif
|
Loading…
Add table
Add a link
Reference in a new issue