S1SYPHOS / Bourbon-Family

Sass boilerplate starring Bourbon, Neat & Bitters, mixed up with some Normalize.css - ready to be served!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bourbon-Family

Release License Issues

Sass boilerplate starring Bourbon, Neat & Bitters, mixed up with some Normalize.css - ready to be served!

Installation

Simply download this repository and put everything inside the src folder where your *.scss files go - all partials are imported through main.scss. For testing / updating, have a look at package.json:

  • npm start: Does nothing, this repo is really just for copy & paste.
  • npm run setup: Installs npm packages & ruby gems for testing purposes (requires Bundler).
  • npm run test: Creates two versions of main.css (ruby-sass + node-sass), making sure everything's working.
  • npm run update: Runs a (very) basic update script (use with caution).

Why?

It's just a simple starter including bourbon + family (by thoughtbot) and Normalize.css (by Nicolas Gallagher):

Normally after installing Bourbon, Neat & Bitters, you'd get this ..

├── base
│   ├── _base.scss
│   ├── _buttons.scss
│   ├── _forms.scss
│   ├── _layout.scss
│   ├── _lists.scss
│   ├── _media.scss
│   ├── _tables.scss
│   ├── _typography.scss
│   └── _variables.scss
├── bourbon
│   ├── bourbon
│   └── _bourbon.scss
└── neat
    ├── neat
    └── _neat.scss

.. but since most of my projects are organized the SMACSS way, I wanted a simple drop-in solution. Sparing the need to install Normalize.css every time, I just included it, accompanied by custom resets (inspired by inuitcss):

├── base
│   ├── _buttons.scss
│   ├── _forms.scss
│   ├── _layout.scss
│   ├── _lists.scss
│   ├── _media.scss
│   ├── _tables.scss
│   └── _typography.scss
├── utility
│   ├── _box-sizing.scss
│   ├── _normalize.scss
│   ├── _reset.scss
│   └── _variables.scss
├── vendor
|   ├── bourbon
|   │   ├── bourbon
|   │   └── _bourbon.scss
|   └── neat
|       ├── neat
|       └── _neat.scss
└── main.scss

Special Thanks

I'd like to thank everybody that's making free & open source software - you people are awesome. Also I'm always thankful for feedback and bug reports :-)

About

Sass boilerplate starring Bourbon, Neat & Bitters, mixed up with some Normalize.css - ready to be served!

License:MIT License


Languages

Language:CSS 95.9%Language:Shell 3.3%Language:Ruby 0.8%