Created
March 5, 2014 20:14
-
-
Save ryanschuhler/9375651 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass"; | |
@import "mixins"; | |
$primary-color: #478ECC; | |
$secondary-color: #E7E8E9; | |
.primary-background-color { | |
background: $primary-color; | |
} | |
.primary-text-color { | |
color: $primary-color; | |
} | |
.secondary-background-color { | |
background: $secondary-color; | |
} | |
.secondary-text-color { | |
color: $secondary-color; | |
} | |
@include respond-to(phone) { | |
body { background: red; } | |
} | |
/* will only style phone and tablet displays smaller than 980px */ | |
@include respond-to(phone, tablet) { | |
body { background: blue; } | |
} | |
/* will only style tablet and desktop displays greater than 768px */ | |
@include respond-to(tablet, desktop) { | |
body { background: green; } | |
} | |
@import url(color-schemes/dark.css); | |
@import url(color-schemes/light.css); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment