0.0
No commit activity in last 3 years
No release in over 3 years
A rails gem to integrate handyCSS styles to your rails project.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
 Project Readme

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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request