keyboardcowboy/orion

Library of sass mixins and jade templates for rapid prototyping.


Keywords
css, sass, scss, jade, prototype, mixins
License
GPL-2.0+

Documentation

Orion Rapid Prototyping Library

Version 3.x

https://github.com/KeyboardCowboy/orion

Orion is my own library of SASS components and Jade base layouts I've compiled over time in order to facilitate rapid prototyping for responsive and cross-browser compatible websites.

Libraries

Orion ships with various 3rd party libraries:

Included

Some libraries are included in Orion and are loaded automatically.

Experimental

  • Foundation components are being wrapped for easier implementation and to prevent unnecessary styles from being injected into the stylesheets.

How to Use Orion

  1. Drop Orion into your project.

     - mySassProject
       - orion
       - _vars.scss
       - _mixins.scss
       - styles.scss
    
  2. Import the orion partial into your SCSS file.

@import 'orion/orion';

  1. Add any custom variables and mixins, especially any variables that typeplate may use if you are including that.

     @import 'vars';
     @import 'mixins';
    
  2. (Optional) Import starter styles

     @import 'orion/normalize';
     @import 'orion/typeplate';
    
  3. Add your own styles.