Created
February 9, 2011 22:19
-
-
Save nickpettit/819437 to your computer and use it in GitHub Desktop.
Condensed Border Radii
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
.black, .blue, .pink, .yellow { | |
-webkit-transition: all 0.5s ease; | |
width: 10px; | |
height: 10px; | |
-moz-border-radius: 0; | |
border-radius: 0; | |
display: block; | |
background: #FFF; | |
padding: 0; | |
} | |
.rounded { | |
-moz-border-radius: 200px 200px 200px 0; | |
border-radius: 200px 200px 200px 0; | |
color: #C00; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks Nick! :)