| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
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
Install Bourbon. Make sure to install version 3.2.0 if you are using e.g. Middleman.
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.
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:
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:
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);
…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.
Refills is Copyright © 2014 thoughtbot. It is free software, and may be redistributed under the terms specified in the LICENSE file.
| Back | FazBrowse Home | New Git URL |