A lightweight responsive Sass/CSS framework based on flexible box.
- Document: https://sass-basis.github.io/
- GitHub: https://github.com/sass-basis/basis/
- Release: https://github.com/sass-basis/basis/releases/
- Basis isn't about a UI framework. Basis provides only basic frame of components. So you build a responsive web page quickly and easy to overwrite with your sass or css.
- CSS architecture of Basis is FLOCSS. So it is possible a modular approach.
- Basis has incorporated the concept of vertical rhythm. So you can be a good-balanced design.
- Flexible grid system. Clean because using a flexible box.
- integrity: https://sass-basis.github.io/integrity/
- improve: https://sass-basis.github.io/improve/
- affinity: https://sass-basis.github.io/affinity/
Installs Basis
$ yarn install sass-basis
$ yarn run gulp build
Imports basis.styl your Stylus.
@import /PATH/TO/node_modules/sass-basis/src/css/basis;
Imports JavaScripts ( Require jQuery )
import '/PATH/TO/node_modules/sass-basis/src/js/basis.js';
Download the basis from https://github.com/sass-basis/basis/releases
Imports basis.scss your Sass/SCSS.
@import /PATH/TO/basis/src/css/basis;
or Just this link.
<link rel="stylesheet" href="/PATH/TO/basis/dist/css/basis.min.css">
Loads JavaScripts
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="/PATH/TO/node_modules/sass-basis/dist/js/basis.min.js"></script>
Support IE9 ( Not perfect )
<!--[if lt IE 10]>
<link rel="s
8000
tylesheet" href="/PATH/TO/basis/dist/css/plugin/basis-ie9/basis-ie9.min.css" />
<![endif]-->
And support IE8 ( Not perfect )
<!--[if lt IE 9]>
<script src="/PATH/TO/basis/vendor/html5.js"></script>
<![endif]-->
Modern Browser and IE10+
Please make an issue if there is a problem and needs. Please don't make the new issue if the issue of the same content already exists. If you can coding, please give me a pull request. But, please do not send in the master branch. Pull request sent to the master branch doesn't merge.
MIT License