Created
March 1, 2012 14:02
-
-
Save cedricici/1950003 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
section{ | |
margin-top:100px; | |
width:800px; | |
height:200px; | |
background:gainsboro; | |
padding:20px; | |
perspective:600px; | |
/*perspective-origin:-300px 50%;*/ | |
} | |
nav{ | |
width:150px; | |
height:150px; | |
margin: auto; | |
background:darkorange; | |
border:3px solid darkred; | |
transform:rotateY(130deg); | |
transform-style:preserve-3d; | |
backface-visibility:visible; | |
/*transform-style:flat;*/ | |
} | |
div{ | |
width:75px; | |
height:75px; | |
background:firebrick; | |
border:2px solid maroon; | |
margin:30px auto; | |
transform:translateZ(50px) rotateX(45deg); | |
transform-style:preserve-3d; | |
} | |
span{ | |
font-weight:bold; | |
border:1px solid #fff; | |
transform:translateZ(25px); | |
} |
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
<!-- content to be placed inside <body>…</body> --> | |
<section> | |
<nav> | |
<div><span>BugDroid<span></div> | |
</nav> | |
</section> | |
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
{"view":"split","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment