Created
September 30, 2014 16:15
-
-
Save jshawl/8ff4bcc20a2b7c8831c0 to your computer and use it in GitHub Desktop.
a precess production
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.shape{ | |
border:5px solid red; | |
} | |
.square{ | |
@extend .shape; | |
width:100px; | |
height:100px; | |
} | |
.circle{ | |
border-radius:100%; | |
@extend .square; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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