├── .gitmodules ├── README.md ├── humans.txt ├── img └── css │ └── .gitkeep └── index.html /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "css"] 2 | path = css 3 | url = git@github.com:csswizardry/inuit.css.git 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vanilla 2 | 3 | _vanilla_ is my default starting point for all front-end builds. It contains my 4 | [inuit.css](http://inuitcss.com) as a submodule to quickly get me set up and 5 | building on a powerful little front-end framework. 6 | 7 | I am not precious about the code used in _vanilla_, if you want it you can have 8 | it (but perhaps give a mention in `humans.txt`). 9 | -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- 1 | TEAM 2 | 3 | Harry Roberts -- Designer/developer -- @csswizardry 4 | 5 | 6 | SITE 7 | 8 | HTML 9 | CSS 10 | inuit.css -- inuitcss.com 11 | -------------------------------------------------------------------------------- /img/css/.gitkeep: -------------------------------------------------------------------------------- 1 | Place any images in here that are referenced only in stylesheets. All other image content belongs in /img/. -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | --------------------------------------------------------------------------------