Sha256: 67a5e0028ebb1aa09ddea8fc446876b9c6b8fc7f64b8ca8d64c3fe8e6dd813a8
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
[![Gem Version](https://badge.fury.io/rb/minable.png)](http://badge.fury.io/rb/minable) # Minable Minable is a minimal CSS framework written in SCSS. It's based on Yahoo's [Pure CSS](http://purecss.io/) and thoughtbot's [Bourbon](http://bourbon.io/). Minable is very early in development, expect breaking changes in the near future. Documentation and examples coming soon. ## Requirements Sass 3.2+ # SASS projects Minable includes an easy way to generate a directory with all the necessary files. For command line help: `$ minable help` #### Install gem install minable Install Minable into the current directory by generating the `minable` folder: minable install The generated folder will contain all the mixins and other necessary Minable files. It is recommended not to add or modify the Minable files so that you can update Minable easily. You can specify a target directory using the `path` flag: minable install --path my/custom/path/ #### Import Lastly, import the mixins at the beginning of your stylesheet(s): @import 'minable/minable'; # Install for Rails 3.1+ In your Gemfile: gem 'minable' Then run: $ bundle install Restart your server. Then rename application`.css` to application`.css.scss`: mv app/assets/stylesheets/application.css app/assets/stylesheets/application.css.scss Delete the sprocket directive in application.css.scss. *= require_tree . Import Minable at the beginning of application.css.scss. All additional stylesheets must be imported below Minable: @import "minable"; License ------- Minable is Copyright © 2014 Joe Dinsdale. Bourbon is Copyright © 2011-2013 thoughtbot. Pure CSS is copyright 2014 Yahoo! Inc.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
minable-0.0.2 | readme.md |