themelio
v1.3.2
Published
A simple Sass library that uses [normalize.css](https://github.com/necolas/normalize.css/) and [Skeleton](https://github.com/dhg/Skeleton) as building blocks in a modular fashion.
Downloads
2
Readme
themelio
A simple Sass library that uses normalize.css and Skeleton as building blocks in a modular fashion.
Usage
Install the npm package:
npm i themelio
Import themelio in your Sass files, and you're done:
@import 'node_modules/themelio/themelio';
You can also choose to import only the modules you need, but note that you must
import the variables
module, and if you want to customize the values, check
'variables.scss' for their names and override them.
Here's an example:
@import 'node_modules/themelio/sass/reset';
@import 'node_modules/themelio/sass/variables'; // Must be imported.
@import 'custom_variables'; // Override variables with your own.
@import 'node_modules/themelio/sass/mixins';
@import 'node_modules/themelio/sass/grid';
@import 'node_modules/themelio/sass/base';
@import 'node_modules/themelio/sass/typography';
@import 'node_modules/themelio/sass/buttons';
@import 'node_modules/themelio/sass/forms';
@import 'node_modules/themelio/sass/tables';
@import 'node_modules/themelio/sass/utilities';
License
MIT License. See license.