pure-sass is a port of Yahoo!'s Pure CSS framework to SASS.
To be honest, I don't really know that much about CSS, I just wanted this Gem to exist so that I could use it on a project. I will gladly accept almost any contribution to help with maintaining this Gem and will give commit rights to anyone who asks for it.
In the long run, I expect that maintainership will be handed to someone else, but I'm happy to incubate it here for now.
Add pure-sass to your applications Gemfile
gem 'pure-sass'
Then in your app/assets/stylesheets/application.css
you can use
*= require pure/all
or in your Sass or SCSS files you can use
@import 'pure/all'
If you don't want all of Pure then you can manually include
pure/defaults
- default themepure/base
- base styles based on normalize.csspure/buttons
- Pure's button modulepure/forms
- Pure's form modulepure/grids
- Pure's grid layoutpure/menus
- Pure's menu modulepure/tables
- Pure's table module
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request