1,278
edits
Line 2,000: | Line 2,000: | ||
.homepage-how-to-follow-it { | .homepage-how-to-follow-it { | ||
text-align: right; | text-align: right; | ||
} | |||
.perspective { | |||
display: flex; | |||
justify-content: center; | |||
align-items: center; | |||
perspective: 1000px; | |||
perspective-origin: 10% 60%; | |||
} | |||
.three-d-image-container { | |||
width: 400px; | |||
background-color: cornflowerblue; | |||
transition: 1s; | |||
transform: rotateX(4deg) rotateY(-15deg) rotateZ(2deg); | |||
box-shadow: 10px 10px 30px rgba(0 0 0 / .2); | |||
} | |||
.three-d-image-container:hover { | |||
transform: rotateX(6deg) rotateY(-25deg) rotateZ(3deg); | |||
box-shadow: 10px 20px 30px rgba(0 0 0 / .3); | |||
} | } | ||