Skip to content

Instantly share code, notes, and snippets.

@imadx
Created April 8, 2016 06:00
Show Gist options
  • Save imadx/c909cfe138d7a7775532d1fb215cc744 to your computer and use it in GitHub Desktop.
Save imadx/c909cfe138d7a7775532d1fb215cc744 to your computer and use it in GitHub Desktop.
<style type="text/css">
body{
font-weight: 100;
}
div.displayContainer{
background: #eee;
padding: 10px;
box-shadow: inset 0 0 3px -2px #000, inset 0 6px 6px -6px #000;
}
div.displayContainer h2{
margin-left: 30px;
}
div.shadow{
background: #fff;
border-radius: 3px;
padding: 20px;
box-shadow: 0 0 3px -2px #000, 0 6px 6px -6px #000;
margin: 20px;
}
</style>
<div class="displayContainer">
<h2>Preview of a containers with Natural Shadows</h2>
<div class="shadow">Using a Shadow with <code>div</code></div>
<div class="shadow">Using the same Shadow with another <code>div</code></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment