Skip to content

Instantly share code, notes, and snippets.

@SBoudrias
Created October 3, 2012 17:47
Show Gist options
  • Save SBoudrias/3828561 to your computer and use it in GitHub Desktop.
Save SBoudrias/3828561 to your computer and use it in GitHub Desktop.
Border-radius rendering
/**
* Border-radius rendering
*/
body {
background-color: #0051a2;
}
.outer {
width: 80%;
margin: 40px auto;
background: rgba(255,255,255,0.9);
overflow: hidden;
border-radius: 3px;
box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.inner {
padding: 20px;
float: left;
background-color: #0051a2;
color: white;
}
<div class="outer">
<div class="inner">
Button
</div>
</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