Created
February 18, 2015 04:16
-
-
Save KatieK2/2355f5b0ca20975c8f5b to your computer and use it in GitHub Desktop.
GDI Sass, Class 1, Slide 5 example - SassMeister.com
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$brandColor: #f90000; | |
$accentColor: #fff; | |
header { | |
background-color: $brandColor; | |
color: $accentColor; | |
a { | |
color: $accentColor; | |
} | |
} |
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
header { | |
background-color: #f90000; | |
color: #fff; | |
} | |
header a { | |
color: #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment