Created
November 16, 2021 13:25
-
-
Save gmcusaro/135a6028c6e032f90a906decb144c551 to your computer and use it in GitHub Desktop.
Isometric effect
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
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
.card { | |
transform: rotateX(60deg) rotateZ(-45deg); | |
transition: transform 200ms; | |
border-radius: 10px; | |
width: 100px; | |
height: 100px; | |
position: absolute; | |
} | |
.container { | |
position: relative; | |
width: auto; | |
height: auto; | |
overflow: visible; | |
margin: 25px 0 0 20px; | |
} | |
.container:hover .uno { | |
transform: rotateX(60deg) rotateZ(-45deg) translateZ(40px); | |
} | |
.uno { | |
background-color: #ff0000; | |
transform: rotateX(60deg) rotateZ(-45deg) translateZ(20px); | |
z-index: 0; | |
} | |
.due { | |
background-color: #c60000; | |
transform: rotateX(60deg) rotateZ(-45deg) translateZ(10px); | |
z-index: 1; | |
} | |
.tre { | |
background-color: #a40101; | |
transform: rotateX(60deg) rotateZ(-45deg) translateZ(0px); | |
z-index: 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment