Skip to content

Instantly share code, notes, and snippets.

@maxbrockman453
Created June 10, 2014 21:21
Show Gist options
  • Save maxbrockman453/65dc4c297db7701e0e53 to your computer and use it in GitHub Desktop.
Save maxbrockman453/65dc4c297db7701e0e53 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
%mix-in
width: 75%
height: 25%
=default-box($argument, $argument2)
@extend %mix-in
border: 1px solid blue
border-radius: 2px solid green
.class1
+default-box(red, black)
.class2
+default-box(orange, purple)
.class1, .class2 {
width: 75%;
height: 25%;
}
.class1 {
border: 1px solid blue;
border-radius: 2px solid green;
}
.class2 {
border: 1px solid blue;
border-radius: 2px solid green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment