Bourbon is a library of pure Sass mixins that are designed to be simple and easy to use. No configuration required. The mixins aim to be as vanilla as possible, meaning they should be as close to the original CSS syntax as possible.
The mixins contain vendor specific prefixes for all CSS3 properties for support amongst modern browsers. The prefixes also ensure graceful degradation for older browsers that support only CSS3 prefixed properties. Bourbon uses SCSS syntax.
- Sass 3.3+
⚠️ If you are using Bourbon with LibSass, sass-rails, Compass, Foundation or need Sass 3.2 support, you should use Bourbon 3.2.x.
Bourbon uses the RubyGems package manager to easily generate a bourbon
directory with all of the necessary files.
For command line help, use bourbon help
or visit the Command Line Interface Wiki.
- Install the Bourbon gem:
gem install bourbon
- Install the Bourbon library into the current directory:
bourbon install
Pro Tip: You can specify a target directory using the path
flag:
bourbon install --path my/custom/path/
- Import Bourbon at the beginning of your stylesheet:
@import "bourbon/bourbon";
It’s not recommended to add or modify the Bourbon files so that you can update them easily.
- Add Bourbon to your Gemfile:
gem 'bourbon'
- Then run:
bundle install
- Restart your server and rename
application.css
toapplication.css.scss
:
mv app/assets/stylesheets/application.css app/assets/stylesheets/application.css.scss
- Delete the sprocket directive in
application.css.scss
(why?):
*= require_tree .
- Import Bourbon at the beginning of
application.css.scss
. All additional stylesheets should be imported below Bourbon:
@import "bourbon";
@import "home";
@import "users";
Help! I’m getting an undefined mixin error.
- Uninstall any Bourbon gem versions you already have:
gem uninstall bourbon
- Reinstall the Bourbon gem, using the
-v
flag to specify the version you need:
gem install bourbon -v 3.2.3
- Follow the instructions above to install Bourbon into your project.
bourbon help
bourbon install
bourbon update
bourbon version
More information can be found in the wiki.
- Chrome 10.0+
- Firefox 3.6+
- Internet Explorer 9+
- Opera 12+
- Safari 5.1+
- Bourbon: A simple and lightweight mixin library for Sass
- Neat: A lightweight semantic grid framework for Sass and Bourbon
- Bitters: Scaffold styles, variables and structure for Bourbon projects
- Refills: Prepackaged patterns and components, built on top of Bourbon, Bitters & Neat
Bourbon is maintained and funded by thoughtbot, inc. Tweet your questions or suggestions to @bourbonsass and while you’re at it follow us too.
Copyright © 2011–2014 thoughtbot, inc. Bourbon is free software, and may be redistributed under the terms specified in the license.