Created
October 23, 2012 18:46
-
-
Save Ricardo-Diaz/3940724 to your computer and use it in GitHub Desktop.
CSS: Rounded Borders
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
Rounded Borders | |
.light-rounded { | |
border-radius: 3px; | |
} | |
.heavy-rounded { | |
border-radius: 8px; | |
} | |
.full-rounded { | |
border-radius: 50%; | |
} | |
.barrel-rounded { | |
border-radius: 20px/60px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment