Skip to content
forked from thoughtbot/refills

Prepackaged patterns and components, built on top of Bourbon, Bitters & Neat

License

Notifications You must be signed in to change notification settings

reyalih/refills

 
 

Repository files navigation

Refills

Build Status

Prepackaged patterns and components, built on top of Bourbon, Bitters and Neat

Bourbon provides Sass mixins and eliminates vendor prefixes, for faster CSS coding.

Neat provides a lightweight grid framework.

Bitters provides basic variables and structure to a Bourbon/Neat project.

Refills provides “copy-paste” components and patterns based on Bourbon, Neat and Bitters.

See examples and get the code snippets here

Installing Dependencies

Install Bourbon. Make sure to install version 3.2.0 if you are using e.g. Middleman.

Install Neat

Install Bitters

Install jQuery if you are using any of the components/patterns that require JavaScript. JavaScript, when used, can be found at the bottom of the HTML file.

If a component/pattern has JavaScript it is placed in the HTML.erb file. Feel free to place it somewhere else in your project.

Using Refills

  • Click the “Show Code” link under the component/pattern you want from Refills to copy to your project and use the “copy” buttons to get the code to your clipboard.
  • If a component uses JavaScript, that code will be included at the bottom of the HTML file.
  • Each component/pattern has a set of variables at the very top of its Scss file. These pull out the most important properties of the component/pattern to enable quick changes of color, size and general appearance.

Using Refills with a Rails project

Refills can be used by simply copy-pasting components/patterns from the site but if you prefer adding them via rake tasks, follow these steps:

Add gem to your Gemfile

gem 'refills'

The gem provides the following Rails generators

  • rails generate refills:list Lists all the available snippets

  • rails generate refills:import SNIPPET copies:

    • partials to app/views/refills
    • stylesheets to app/assets/stylesheets/refills
    • javascripts to app/assets/javascripts/refills

Submitting components or patterns

You are more than welcome to submit any component or pattern you can’t find in the library, or feel free to send requests for content you’d like to see. When submitting a pull request, please think of these style guides:

HTML.erb

  • Make sure that each component/pattern is independent of other components/patterns in the Refills library. There should be no dependencies between different components/patterns.

Scss

All components/pattern should be fully responsive and follow the Neat examples.

Avoid more than 2 levels of nesting for clarity and legibility of code.

Try to use as little styling as possible. Use the styles that come with Bitters to keep everything consistent.

Put media queries inline, don’t separate them since that will create a lot of repetitions of class names. If needed, for the sake of clarity, create a specific variable for a media query if a certain breakpoint changes the component/pattern drastically:

$tab-mode: $medium-screen;

@include media($tab-mode) { // $tab-mode is the same as $medium-screen here
  border-radius: 0;
}

Create variables for any color or size that might appear in a refill, especially if it appears more than once in the component/pattern.

Declare the variables inside of the component/pattern’s class like below. Note that variables should be interdependent to enable quick restyling.

.card {
  $card-border-color: $base-border-color;
  $card-border: 1px solid $card-border-color;
  $card-background: lighten($card-border-color, 10);
  …

Credits

thoughtbot

Refills is maintained and funded by thoughtbot, inc. Whenever a code snippet is borrowed or inspired by existing code, we try to credit the original developer/designer in our source code. Let us know if you think we have missed to do this.

Tweet your questions or suggestions to @bourbonsass and while you’re at it follow us too.

License

Refills is Copyright © 2014 thoughtbot. It is free software, and may be redistributed under the terms specified in the LICENSE file.

About

Prepackaged patterns and components, built on top of Bourbon, Bitters & Neat

Resources

License

Stars

Watchers

Forks

Packages