Created
December 4, 2015 04:44
-
-
Save kpennell/2d6b9b47414156b465eb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$color-background: #f5f5f5; | |
$color-font: #111; | |
$font-sans: "Open Sans", sans-serif; | |
body { | |
background-color: $color-background; | |
color: $color-font; | |
font-family: $font-sans; | |
} | |
h2 { | |
color:$color-font; | |
font-family: $font-sans; | |
font-size: 16px; | |
} |
This file contains 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
body { | |
background-color: #f5f5f5; | |
color: #111; | |
font-family: "Open Sans", sans-serif; | |
} | |
h2 { | |
color: #111; | |
font-family: "Open Sans", sans-serif; | |
font-size: 16px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment