From 47bc1b8a68702bb584a0f55479c7eae74b9b49f6 Mon Sep 17 00:00:00 2001 From: Kyle Fiedler Date: Thu, 5 Jan 2012 20:40:27 -0500 Subject: [PATCH] Added more to the sass readme --HG-- branch : kf-refactor --- sass/reademe.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/sass/reademe.md b/sass/reademe.md index 67ffcff923..04d0dd1df9 100644 --- a/sass/reademe.md +++ b/sass/reademe.md @@ -1,2 +1,11 @@ -To generate Sass files cd to templates directory: -sass --watch sass:../static/css/ -r ./sass/bourbon/lib/bourbon.rb +This project is using Sass to generate it's CSS. Sass is a CSS preprocessor that allows for faster developmnet of CSS. For more information about sass: http://sass-lang.com + +To use sass all you need to do is enter: +$ gem install sass + +We are also using Bourbon with sass. They are a genaric set of mixins, and functions that allow for more rpid development of CSS3. Find out more about bourbon here: https://github.com/thoughtbot/bourbon + +Then to generate Sass files cd to templates directory and watch the sass files with: +$ sass --watch sass:../static/css/ -r ./sass/bourbon/lib/bourbon.rb + +This will automatically generate the CSS files on save.