Created
March 17, 2015 17:55
-
-
Save czajkovsky/5c04d129205ef8b3a8b7 to your computer and use it in GitHub Desktop.
Mixins are cool!
This file contains 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
.klass { | |
width: 100px; | |
height: 100px; | |
border-radius: 50%; | |
position: absolute; | |
top: 5px; | |
left: 5px; | |
} |
This file contains 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
.klass { | |
@include circle(100px); | |
@include absolute(top 5px left 5px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment