Skip to content

Instantly share code, notes, and snippets.

@yurfuwa-chan
Created January 6, 2012 10:43
Show Gist options
  • Save yurfuwa-chan/1570065 to your computer and use it in GitHub Desktop.
Save yurfuwa-chan/1570065 to your computer and use it in GitHub Desktop.
sass example
//variables
$red: #FF0000
$margin: 18px
//mixin
=base
padding: 0
//mixin variables
=test($v1)
margin-left: $v1/2
.clip
margin: 0
background-color: #ffffff
//extends
.multiClip
@extend .clip
background-color: #ff00ff
//example
body#wrap
border-color: $red
color: $red
margin: $margin
.content
+base
+test(10px)
text-align: center
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment