├── .gitignore ├── README.md ├── bower.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | *.css 3 | inuit-test.scss 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # inuit-starter-kit 2 | 3 | $ bower install --save inuit-starter-kit 4 | 5 | Install using npm: 6 | 7 | $ npm install --save inuit-starter-kit 8 | 9 | 10 | The `inuit-starter-kit` simply ties together a few key dependencies that are 11 | usually the starting point for any new project. The `inuit-starter-kit` 12 | specifically contains some inuitcss default variables and mixins, as well as 13 | [Nicolas Gallagher](https://twitter.com/necolas)’s 14 | [Normalize.css](https://github.com/necolas/normalize.css) and global 15 | `box-sizing` rules. These must be imported in the following order: 16 | 17 | @import "bower_components/inuit-defaults/settings.defaults"; 18 | 19 | @import "bower_components/inuit-functions/tools.functions"; 20 | @import "bower_components/inuit-mixins/tools.mixins"; 21 | 22 | @import "bower_components/inuit-normalize/generic.normalize"; 23 | @import "bower_components/inuit-box-sizing/generic.box-sizing"; 24 | 25 | @import "bower_components/inuit-page/base.page"; 26 | 27 | If you use npm instead of bower, replace all occurrances of `bower_components` 28 | with `node_modules`. 29 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "inuit-starter-kit", 3 | "version": "0.2.9", 4 | "authors": [ 5 | "Harry Roberts " 6 | ], 7 | "description": "A stripped back, barebones starter kit for the inuitcss framework", 8 | "keywords": [ 9 | "inuitcss", 10 | "oocss", 11 | "css" 12 | ], 13 | "license": "Apache", 14 | "dependencies": { 15 | "inuit-defaults": "0.2.1", 16 | "inuit-functions": "0.2.0", 17 | "inuit-mixins": "0.2.3", 18 | "inuit-box-sizing": "0.2.0", 19 | "inuit-normalize": "3.0.2", 20 | "inuit-page": "0.2.1" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "inuit-starter-kit", 3 | "version": "0.2.9", 4 | "description": "A stripped back, barebones starter kit for the inuitcss framework", 5 | "repository": { 6 | "type": "git", 7 | "url": "https://github.com/inuitcss/starter-kit.git" 8 | }, 9 | "author": "Harry Roberts ", 10 | "license": "Apache 2", 11 | "bugs": { 12 | "url": "https://github.com/inuitcss/starter-kit/issues" 13 | }, 14 | "homepage": "https://github.com/inuitcss/starter-kit", 15 | "keywords": [ 16 | "inuitcss", 17 | "oocss", 18 | "css" 19 | ], 20 | "dependencies": { 21 | "inuit-defaults": "0.2.1", 22 | "inuit-functions": "0.2.0", 23 | "inuit-mixins": "0.2.3", 24 | "inuit-box-sizing": "0.2.0", 25 | "inuit-normalize": "3.0.2", 26 | "inuit-page": "0.2.1" 27 | } 28 | } 29 | --------------------------------------------------------------------------------