Invo's Reusable Style Guide https://goinvo.github.io/invoStyleGuideTemplate/
###Get running
- Download a zip of this repo to start your style guide project and extract it to your project repo.
- If you don't have it already, install node.js, and make sure it's added to your system path. https://nodejs.org/en/
- Open this directory in a shell
- Type npm install, and the tools listed in the package.json will be installed your project. This package includes:
- "express": "^4.13.3",
- "grunt": "^0.4.5",
- "grunt-concurrent": "^2.0.3",
- "grunt-contrib-watch": "^0.6.1",
- "grunt-sass": "^1.0.0",
- "jit-grunt": "^0.9.1",
- "load-grunt-config": "^0.17.2",
- "ssi": "^0.3.0",
- "time-grunt": "^1.2.1"
- Before your first commit, add node_modules/* and .sass-cache/* to your.gitignore file
- Now you're ready to start your project. Open two shells, and type 'node server' in one, and 'grunt' in the other. 'Node server' will allow you to view your site at 'http://localhost:1337/'. 'Grunt' will watch your scss directory for changes.
This guide gives you two main css files. One is to use for the guide with some extra styles for the guide or styles that would otherwise be covered by the client's code (and is thus unnecessary to include in the final css we send them). The css file to make sure clients refer or use is the goinvo-app.css. We can also provide them with the sass or less, but the goinvo-app.css file ends up being all the styles that have been defined in the design.
###Switching to less or another css preprocessor
- Open a shell
- Type 'npm install grunt-contrib-less --save'. This will add less to your dependencies in your package.json and install the modules you'll need. You can also remove contrib-sass from this list as well.
- Rename the 'scss' directory to 'less'
- Rename or resave your files as .less, and remove underscores from the partials' filenames.
- Go to the grun directory. You can create a new one or reconfigure your sass.js. Name the file less.js, and replace 'scss' or 'sass' with 'less'.
- Reconfigure your watch.js in the grunt directory, replace sass and scss with less.
- Rename all variables in your scss to use @ instead of $
- Rework mixins. Remove '@mixin' and '@include' and replace with a '.' instead.