We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the Adapt Mixins wiki!
collerFloat
Author: Mads Thines
Include on the parent of the elements where you want to create the grid system. (Everythings optional)
@include coller(4, 3, 2, 1, 2%, *, alignement, $large, $medium, $small); or @include coller(4, 3, 2, 1, 2%, *, $large, $medium, $small);
@include dyncol; or @include dyncol(2%, *);
Include on the selector where you want the media querie to work.
/* $medium: 768px; // Tablet Horizontal (iPad) */ /* Input */ body { @include media($medium up) { background: hotpink; } } /* Output */ @media screen and (min-width: 768px) { body { background: hotpink; } }