HandyCSS-Rails
Integrates handyCSS.css & normalize.css with the rails asset pipeline.
HandyCSS is a bunch of helpful styles, developed with SCSS along with the famous Normalize.css which makes it easier to kick start any project. Normalize.css is a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards. Normalize.css is a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards. We researched the differences between default browser styles in order to precisely target only the styles that need normalizing. Normalize.css was written by Nicolas Gallagher and Jonathan Neal.
For Rails 3.1+ only
Installation
Add this line to your application's Gemfile:
gem 'handy-css-rails'
And then execute:
$ bundle
Usage
And then in your application.css
*= require_self
*= require handy-css-rails
*= require handy-css-rails.box
*= require handy-css-rails.backdrops
*= require_tree .
Add it before require_tree so that you can override any of its styles.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request