Socket
Socket
Sign inDemoInstall

bourbon

Package Overview
Dependencies
0
Maintainers
3
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

bourbon


Version published
Weekly downloads
112K
decreased by-1.23%
Maintainers
3
Install size
71.0 kB
Created
Weekly downloads
 

Changelog

Source

[5.0.0-beta.7] - 2016-11-03

Added

  • Added white-space: nowrap; to the hide-visually mixin so that content renders on one line and is correctly pronounced by screen readers. You can read more about this in Jesse Beach’s article “[Beware smushed off-screen accessible text][smushed-text-article].”

Changed

  • Removed the default values from the $position and $coordinates arguments for the position mixin.
  • Updated contrast-switch to calculate contrast based on the WCAG 2.0 specification. Please note that it is an approximation and we cannot guarantee full compliance, though all of our manual testing passed.
  • Renamed the $coordinates argument in the position mixin to $box-edge-values.
  • Updated $font-stack-system to include Avenir Next, Avenir, Lucida Grande, Helvetica, Noto, Franklin Gothic Medium, Century Gothic, and Liberation Sans. This follows [system-fonts] by Adam Morse.
  • The word-break property was removed from the word-wrap mixin and is no longer output.
  • Renamed the word-wrap mixin to overflow-wrap to align with the name change in the [CSS spec].

Readme

Source

Bourbon logo

A Lightweight Sass Tool Set

Bourbon is a library of Sass mixins and functions that are designed to make you a more efficient style sheet author.

It is…

  • Dependency-free: Bourbon is pure Sass.
  • Human-readable: We aim for clarity over brevity.
  • Lightweight: Zero output post-install and has no visual opinion.

The current version is 4.2.7. The master branch on GitHub is version 5.0.0-beta.7.

Table of Contents

Requirements

Installation

  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 that you modify Bourbon’s files directly as it will make updating to future versions difficult, by overwriting your custom changes or causing merge conflicts.

Installation for Ruby on Rails 4.2+

  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 (why?).

  2. Import Bourbon at the beginning of application.scss. Any project styles that utilize Bourbon’s features must be imported after Bourbon.

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

Installing with npm and using a Node-based asset pipeline

  1. Add Bourbon as a dependency:
npm install --save bourbon
  1. If you’re using eyeglass, skip to Step 3. Otherwise, you’ll need to add Bourbon to your node-sass includePaths option. require("bourbon").includePaths is an array of directories that you should pass to node-sass. How you do this depends on how node-sass is integrated into your project.

  2. Import Bourbon into your Sass files:

@import "bourbon";

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.

Command Line Interface

bourbon [options]

Options

OptionDescription
-h, --helpShow help
-v, --versionShow the version number
--pathSpecify a custom path
--forceForce install (overwrite)

Commands

CommandDescription
bourbon installInstall Bourbon into the current directory
bourbon updateOverwrite and update Bourbon in the current directory
bourbon helpShow help

Browser Support

Bourbon supports Internet Explorer 11+ and the latest versions of Chrome, Firefox, Safari, and Edge.

The Bourbon Family

Bourbon is part of a larger, modular family of Sass utilities:

  • Bourbon: A lightweight Sass tool set
  • 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

Be sure to 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.

Contributing

See the contributing document. Thank you, contributors!

License

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

About

Bourbon is maintained by Tyson Gach and the thoughtbot design team. It is funded by thoughtbot, inc. and the names and logos for thoughtbot are trademarks of thoughtbot, inc.

thoughtbot logo

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

Keywords

FAQs

Last updated on 03 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc