Skip to content

Instantly share code, notes, and snippets.

@joshmvandercom
Created March 10, 2012 18:55
Show Gist options
  • Save joshmvandercom/2012486 to your computer and use it in GitHub Desktop.
Save joshmvandercom/2012486 to your computer and use it in GitHub Desktop.
Scss Example
@mixin module{
background: white;
border: 1px solid #ccc;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
#content {
@include module;
float: left;
}
#sidebar {
@include module;
float: right;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment