Skip to content

Instantly share code, notes, and snippets.

@ralphcrisostomo
Created February 26, 2013 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ralphcrisostomo/5035451 to your computer and use it in GitHub Desktop.
Save ralphcrisostomo/5035451 to your computer and use it in GitHub Desktop.
My SASS Best Practice
# 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