Created
February 26, 2013 02:55
-
-
Save ralphcrisostomo/5035451 to your computer and use it in GitHub Desktop.
My SASS Best Practice
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
# Variables | |
$BLUE : blue ; | |
# Mixins | |
# Non-Semantic CSS | |
%color-blue { | |
color : $BLUE | |
} | |
# Semantic Class | |
.profile { | |
@extend color-blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment