Sha256: 484adc8455a1068a9b9299e336bf003891d88cd52c87a5cfc658c8d42028261d
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
# blaze-css-rails [![Gem Version](https://badge.fury.io/rb/blaze-css-rails.svg)](https://badge.fury.io/rb/blaze-css-rails) Blaze Css Rails gemifies the outstanding [Blaze CSS Framework](http://blazecss.com/) for Ruby on Rails applications. This gem is built with two main goals: - Instantly install Blaze CSS in the Rails asset pipeline. - Give you full power to customize your theme directly within the asset pipeline. The currently bundled version of Blaze CSS is v3.0.0 ## Installation Add the following line of code to your application's Gemfile: ```ruby gem 'blaze-css-rails' ``` and run `bundle install`. ## Useage ### Sprockets If you are using Sprockets with the asset pipeline, include this in your `app/stylesheets/application.css`: ```css /* *= require blaze */ ``` You now have access to all of the classes in the Blaze library. ### Sass If you prefer Sass (like me) you can instead add `@import 'blaze'` into your import file. ### Customizing As it is bundled, this gem includes the default settings in Blaze CSS. Customizing these settings is extremely simple though, just import a file containing your custom variables before importing 'blaze'. The settings available for you to over-ride can be found [here](https://github.com/andrewtpoe/blaze-css-rails/tree/master/vendor/blaze-css/scss/mixins/_settings.global.scss).
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
blaze-css-rails-0.0.5 | README.md |
blaze-css-rails-0.0.4 | README.md |