Skip to content

Instantly share code, notes, and snippets.

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