Created
July 18, 2016 20:08
-
-
Save grupocitar/9c35fdb8ed4d54220f14e01358f65029 to your computer and use it in GitHub Desktop.
Untitled
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
| .cubo{ | |
| position:relative; | |
| transform-style: preserve-3d; | |
| width: 100px; | |
| height: 100px; | |
| margin: 100px 100px; | |
| transform: rotateX(-10deg) rotateY(10deg); | |
| } | |
| .cubo-3d{ | |
| position:absolute; | |
| width:100px; | |
| height:100px; | |
| } | |
| .face-1{ | |
| background-color:red; | |
| transform: translateZ(50px); | |
| } | |
| .face-2{ | |
| background-color:blue; | |
| transform: translateX(50px) rotateY(90deg); | |
| } | |
| .face-3{ | |
| background-color: yellow; | |
| transform: translateX(-50px) rotateY(-90deg); | |
| } | |
| .face-4{ | |
| background-color:green; | |
| transform: translateY(50px) rotateX(90deg); | |
| } | |
| .face-5{ | |
| background: gray; | |
| transform: translateY(-50px) rotateX(-90deg); | |
| } | |
| .face-6{ | |
| background: purple; | |
| transform: translateZ(-50px) rotateY(180deg); | |
| } |
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 class="cubo"> | |
| <div class="cubo-3d face-1"></div> | |
| <div class="cubo-3d face--2"></div> | |
| <div class="cubo-3d face-3"></div> | |
| <div class="cubo-3d face-4"></div> | |
| <div class="cubo-3d face-5"></div> | |
| <div class="cubo-3d face-6"></div> | |
| </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
| {"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment