Created
May 27, 2013 02:18
-
-
Save LibertysYarn/5654860 to your computer and use it in GitHub Desktop.
Layered Paper - from CSS-tricks.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="layered-paper"> | |
Howdy | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.layered-paper { | |
background: #eee; | |
box-shadow: | |
0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */ | |
0 10px 0 -5px #eee, /* The second layer */ | |
0 10px 1px -4px rgba(0,0,0,0.15), /* The second layer shadow */ | |
0 20px 0 -10px #eee, /* The third layer */ | |
0 20px 1px -9px rgba(0,0,0,0.15); /* The third layer shadow */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment