helper-css v1.2.0
Helper CSS
Common CSS helper classes. Focus on missing padding and margin styles in Bootstrap 3.
Install
Install with Npm or Bower
npm
To install with npm run
$ npm install helper-css --saveBower
To install with Bower run
$ bower install helper-css --saveUsage
Include helper-css.min.css style in your page and start using css helper classes.
CSS Helper Classes
CSS helper classes cover four areas - margin, padding, text and general.
CSS Helpers for margin and Padding
All margin and padding have properties for distances 0, 5, 10, 15, 20, 30, 40, 50, 60, 80, 100, 150 and 200 px.
Margin classes starts with m, padding classes starts p.
Following is the number that represents space in pixels and (optional) direction. Direction can be top, lft, rgt and btm.
Example:
m0: assignsmargin: 0propertym50lft: assignsmargin-left: 50pxpropertyp10: assignspadding: 10pxpropertyp20btm: assignspadding-bottom: 20pxpropertyp10top p10btm m20rgt: assignspadding-top: 10px; padding-bottom: 10px; margin-right: 20pxproperty
CSS Helpers for Text
Text CSS Helpers contain set of text styling classes for text display and size.
Text Display
text-strong: assignsfont-weight: boldpropertytext-strike: assignstext-decoration: line-throughproperty
Text Size
Text size can be adjusted by using text-<size> where <size> can take t-shirt value: xs, s, m, l, xl, xxl.
text-xs: assignsfont-size: 70%propertytext-s: assignsfont-size: 85%propertytext-m: assignsfont-size: 100%propertytext-l: assignsfont-size: 115%propertytext-xl: assignsfont-size: 130%propertytext-xxl: assignsfont-size: 145%property
As any other classes, helper classes can be combined together.
Usage example:
For given div element:
<div class="m0 p20top p10rgt p50btm p10lft text-s">
...
</div>output would be the same as:
<div style="margin:0; padding: 20px 10px 50px 10px; font-size: 80%;">
...
</div>