Skip to content

adrianaguirre/bourbon

 
 

Repository files navigation

Bourbon

Gem Version Code Climate Gitter chat Stack Overflow

A simple and lightweight mixin library for Sass.

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.

Follow the @bourbonsass Twitter account for updates.

Requirements

Installation

For command line help, visit our wiki page on Bourbon’s command line interface.

  1. Install the Bourbon gem using the RubyGems package manager:
gem install bourbon

Alternatively, you can install Bourbon with Bower.

  1. Install the Bourbon library into the current directory:
bourbon install

Pro Tip: You can target installation into a specific directory using the path flag:

bourbon install --path my/custom/path/
  1. 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.

Installation for Ruby on Rails 3.1+

  1. Add Bourbon to your Gemfile:
gem 'bourbon'
  1. Then run:
bundle install
  1. Restart your server and rename application.css to application.scss:
mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss
  1. Delete all Sprockets directives in application.scss (require, require_tree and require_self) and use Sass’s native @import instead.

  2. Import Bourbon at the beginning of application.scss. All additional stylesheets should be imported below Bourbon:

@import "bourbon";
@import "home";
@import "users";

Help! I’m getting an undefined mixin error.

Installing older versions of Bourbon

  1. Uninstall any Bourbon gem versions you already have:
gem uninstall bourbon
  1. Reinstall the Bourbon gem, using the -v flag to specify the version you need:
gem install bourbon -v 3.2.4
  1. Follow the instructions above to install Bourbon into your project.

Browser support

  • Chrome 26+
  • Firefox 29+
  • Internet Explorer 9+
  • Opera 15+
  • Safari 6.1+

The Bourbon family

  • 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 with Bourbon, Neat and Bitters

Also check out Proteus, a collection of useful starter kits to help you prototype faster. Each kit comes with Bourbon, Neat and Bitters out-of-the-box.

License

Copyright © 2011–2015 thoughtbot, inc. Bourbon is free software, and may be redistributed under the terms specified in the license.

About thoughtbot

thoughtbot

Bourbon is maintained and funded by thoughtbot, inc. The names and logos for thoughtbot are trademarks of thoughtbot, inc.

We love open source software! See our other projects or hire us to design, develop, and grow your product.

About

A lightweight Sass mixin and function library.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 78.1%
  • Ruby 19.6%
  • Gherkin 2.3%