This is inspired by Bootstrap and is meant to be a starting point and collection of base styles to be used by all Prism Skylabs web projects. The documentation and living guide can be viewed at http://prismskylabs.github.io/style-guide.
Documentation is a Jekyll site that is publicly hosted at http://prismskylabs.github.io/style-guide. The docs may also be run locally.
- Install Jekyll with
gem install jekyll
. - From the
docs/
directory, runjekyll serve
in the command line. - View the documents at http://localhost:4000.
The documents are hosted using GitHub Pages from the gh-pages branch. Since GitHub only allows you to run Jekyll with the source set to the root of the repository, we have to build the gh-pages branch as a subtree from master.
Run the following command from inside the repo to deploy the docs: git subtree push --prefix docs origin gh-pages
.
Once that is done, the changes should be viewable nearly immediately.