Skip to content

Instantly share code, notes, and snippets.

@andrewdh
Created July 19, 2012 16:01
Show Gist options
  • Save andrewdh/3144946 to your computer and use it in GitHub Desktop.
Save andrewdh/3144946 to your computer and use it in GitHub Desktop.
Abstract Border Radius Shapes
/**
* 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%;
}
<div class="shape"></div>
{"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