h1. Flutie Basic, default styles for rails applications h2. Installation Flutie is a Rails engine. It works with versions of Rails greater than 3.0. Flutie is recommended to be run as a gem and included in your Gemfile. $ rake flutie:install The installer will copy the Flutie stylesheets into public/flutie/stylesheets Once Flutie is installed, with your application running (not in production environment) you can browse to /styleguides. This will present you with many standard markup elements that are present in a Rails application, in your default application layout. Click on the "Default styles" link to view the same markup with a barebones layout that only contains the Flutie stylesheets. Click on "Application styles" to view the markup in your application layout. h2. Usage Flutie registers a :flutie shortcut for stylesheets, so in your layout you can do... <%= stylesheet_link_tag :flutie, 'admin', :cache => true %> ...this will include all the flutie stylesheets, then the 'admin' stylesheet, and it will cache them all into one file. h3. Sass If you use Sass in your application, the flutie stylesheets are also available as scss files, installed in public/flutie/sass. This location is automatically added to your Sass template load path. These files can be imported into your own css files for use with the following: @import "flutie" h3. Custom Styles To add custom styles to the styleguide add partials to the app/views/styleguides directory. For example: bc. app/views/styleguides/_todo_item.erb: bc..