/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************//******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************//******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************//*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************//*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*//*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*//******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************//*********************
TRANSITION
*********************//*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*//******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/@import "breakpoints/481up";@import "breakpoints/768up";/*
you can call the larger styles if you want, but there's really no need
*//******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************//*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/@import "breakpoints/1030up";p{-ms-word-wrap:none !important;word-break:none !important;word-wrap:none !important;-webkit-hyphens:none !important;-moz-hyphens:none !important;hyphens:none !important;-webkit-hyphenate-before:2;-webkit-hyphenate-after:3;hyphenate-lines:3;-webkit-font-feature-settings:"liga", "dlig";-moz-font-feature-settings:"liga=1, dlig=1";-ms-font-feature-settings:"liga", "dlig";-o-font-feature-settings:"liga", "dlig";font-feature-settings:"liga", "dlig";}.button{display:inline-block;background:#1d3995;color:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:10px 25px;text-decoration:none;border-left:none;border-top:none;border-right:none;border-bottom:2px solid #15296a;text-transform:uppercase;font-size:15px;text-shadow:0 -1px 0 #15296a;letter-spacing:0.02em;-webkit-transition:all, 100ms;transition:all, 100ms;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.button:hover{background:#1a3284;border-bottom:2px solid #112259;}.button-green{background:#1ab437;border-bottom:2px solid #148729;text-shadow:0 -1px 0 #148729;}.button-green:hover{background:#19ab34;border-bottom:2px solid #127f27;}