public
Description: The blueprint stylesheet framework in sass. Development has moved to my project named Compass.
Homepage:
Clone URL: git://github.com/chriseppstein/blueprint-sass.git
README
Blueprint-Sass is a project to port the blueprint-css framework to SASS.

What it provides:
* sass mixins to help you define blueprint styles for your application.

To install:
* copy the contents of the blueprint directory into your sass folder.

To install in a rails project:

1. Install my fork of haml, that allows you to store sass files in more than one directory:
./script/plugin install git://github.com/chriseppstein/haml.git

2. Install blueprint sass
./script/plugin install git://github.com/chriseppstein/blueprint-sass.git

3. Generate required files
./script/generate blueprint

4. Reference your new stylesheets in your application.html.haml
  = stylesheet_link_tag 'application.css', :media => 'screen, projection'
  = stylesheet_link_tag 'application-print.css', :media => 'print'
  /[if IE]
    = stylesheet_link_tag 'application-ie.css', :media => 'screen, projection'

To run the unit tests:
% rake test

To compile the examples:
% rake examples