@matochondrion/basscss-columns
v1.0.2
Published
A basscss/css/postcss component for columns that wrap.
Downloads
5
Maintainers
Readme
#@matochondrion/basscss-columns
A basscss/css/postcss component for columns that wrap.
Based on OOCSS principles and frameworks like Basscss.
Columns is an immutable component designed to be skinned with simple module classes.
Features
Low Specificity
Low Specificity makes it easy to style the Component without worrying about complicated CSS hierarchies.
No Preset Styling
Shape, colors, overflow, etc are available to the author to implement in any number of combinations. Ie, The styles have not been preset. See examples:
Usage
This module is meant to be an add-on for Basscss. To use, first install a Basscss project (Basscss, Bassplate, Ace, etc... ) with NPM, then install this component with NPM, and then include @import 'symmetric-block';
in the source css file.
Install - NPM
npm i -D @matochondrion/basscss-columns
PostCSS
@import '@matochondrion/basscss-columns';
Examples
These examples assume the document's box-sizing has been set to border-box using a method similar to CSS-Tricks...
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
Needs examples.