Skip to content

Instantly share code, notes, and snippets.

@jshawl
Created September 30, 2014 16:27
Show Gist options
  • Save jshawl/2bb3e486a169f79fd000 to your computer and use it in GitHub Desktop.
Save jshawl/2bb3e486a169f79fd000 to your computer and use it in GitHub Desktop.
a precess production
.shape{
border:5px solid red;
}
@mixin size( $dimensions ){
height:$dimensions;
width:$dimensions;
}
.square{
@extend .shape;
@include size( 50% );
}
.circle{
border-radius:100%;
@include size( 150% );
}
.shape, .square {
border: 5px solid red;
}
.square {
height: 50%;
width: 50%;
}
.circle {
border-radius: 100%;
height: 150%;
width: 150%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment