Created
July 19, 2012 16:01
-
-
Save andrewdh/3144946 to your computer and use it in GitHub Desktop.
Abstract Border Radius Shapes
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
/** | |
* Abstract Border Radius Shapes | |
*/ | |
.shape { | |
background-color: hsla(50,100%,50%,1); | |
width: 10%; | |
height: 7em; | |
margin: 2em auto; | |
border-radius: 90% 10% 90% 10% / 50% 10% 50% 10%; | |
transition: all .5s ease; | |
} | |
.shape:hover { | |
border-radius: 50%; | |
} |
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
<div class="shape"></div> |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment