Playing around with :before and :after to create a singe element box. Flaps are created using box-shadow.
Created
November 11, 2013 20:38
-
-
Save webpax/7419949 to your computer and use it in GitHub Desktop.
A Pen by Amy .
This file contains hidden or 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 id="box"></div> |
This file contains hidden or 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
body { | |
margin-top: 150px; | |
} | |
#box { /*Left*/ | |
position:relative; | |
float: left; | |
margin-bottom: 200px; | |
margin-left: 200px; | |
width:100px; | |
height:100px; | |
background-color:#8b5b37; | |
-webkit-transform: skew(0deg,20deg); | |
-webkit-box-reflect: below 2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, transparent), to(rgba(255,255,255,0.5))); | |
box-shadow: inset 0 0 30px #4f3924; | |
} | |
#box:after { /*right*/ | |
content: ""; /*must have content "" to show up*/ | |
position:fixed; | |
width:100px; | |
height:100px; | |
margin-left:100px; | |
margin-top: -42px; | |
background-color:#be814a; | |
-webkit-transform: skew(0deg,-40deg); | |
-webkit-box-reflect: below 2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, transparent), to(rgba(255,255,255,0.5))); | |
box-shadow: inset 0 0 30px #e1ae75; | |
} | |
#box:before { /*top*/ | |
content: ""; /*must have content "" to show up*/ | |
position:fixed; | |
width:100px; | |
height:84px; | |
margin-top:-84px; | |
margin-left: 50px; | |
background-color:#4f3924; | |
-webkit-transform: skew(310deg,0deg); | |
box-shadow: 0px 30px 1px 0px #e1ae75, 0px -30px 1px 0px #e1ae75, 35px 0px 1px 0px #e1ae75, -35px 0px 1px 0px #e1ae75, inset 0 0 60px #000000; | |
z-index: 10; /*drop shadows make the flaps*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment