Created
March 10, 2012 18:55
-
-
Save joshmvandercom/2012486 to your computer and use it in GitHub Desktop.
Scss Example
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
@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