Skip to content

Instantly share code, notes, and snippets.

@tonisuter
Created March 15, 2012 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonisuter/2042612 to your computer and use it in GitHub Desktop.
Save tonisuter/2042612 to your computer and use it in GitHub Desktop.
Inset Box
/**
* Inset Box
*/
html {
background: white;
min-height:100%;
}
.inset_box {
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
-khtml-border-radius: 4px;
height:200px;
background-color:red;
font: 30px, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
color: #333;
width: auto;
padding: 29px 35px 16px;
margin: 18px 0 24px;
background: whiteSmoke;
border: 1px solid #CCC;
-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.34);
-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.34);
box-shadow: inset 0 1px 3px rgba(0,0,0,.34);
}
<div class="inset_box">
No results
</div>
{"view":"split-vertical","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment