Skip to content

Instantly share code, notes, and snippets.

@export-mike
Created January 21, 2014 09:34
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 export-mike/8537112 to your computer and use it in GitHub Desktop.
Save export-mike/8537112 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
@mixin box($color,$width:30px, $height:30px){
width:$width;
height:$height;
background-color:$color;
}
.primary-box{
@include box(red,20px,10px);
}
.secondary-box{
@include box(red);
}
.primary-box {
width: 20px;
height: 10px;
background-color: red;
}
.secondary-box {
width: 30px;
height: 30px;
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment