Rounded border shadow
by beau
HTML
<div class="shadow-stuff">
<div class="container">
container here
</div>
</div>
CSS
.shadow-stuff {
border-radius: 0% 0% 100% 100% / 0% 0% 8px 8px;
box-shadow: rgba(0,0,0,.30) 0 2px 3px;
}
.container {
margin: 40 0 0 0;
background-color: #fff;
height: 100px;
border: 1px solid #FFF;
background: #F6F6F6;
background: linear-gradient(top,rgba(249, 249, 249, 1) 50%,rgba(240, 240, 240, 1) 100%);
border-radius: 5px;
box-shadow: inset 0 2px 1px rgba(255,255,255,.97);
}