Created
August 5, 2014 06:14
-
-
Save czajkovsky/d608240af93d278ab718 to your computer and use it in GitHub Desktop.
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
.circle { | |
@include circle(5rem); | |
background: #e14b4e; | |
} | |
.rounded { | |
@include rounded-box(5rem, 2rem); | |
background: #07a9ea; | |
} | |
.rounded--custom { | |
@include rounded-box(5rem, 1rem 2rem); | |
background: #fdb53f; | |
} | |
.rounded--fancy { | |
@include rounded-box(5rem, 0.5rem 1rem 1.5rem 2rem); | |
background: #ed558f; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment