Created
September 30, 2014 16:27
-
-
Save jshawl/2bb3e486a169f79fd000 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; | |
} | |
@mixin size( $dimensions ){ | |
height:$dimensions; | |
width:$dimensions; | |
} | |
.square{ | |
@extend .shape; | |
@include size( 50% ); | |
} | |
.circle{ | |
border-radius:100%; | |
@include size( 150% ); | |
} |
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 { | |
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