mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-08-08 15:16:52 +02:00
47 lines
1.0 KiB
CSS
47 lines
1.0 KiB
CSS
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2021 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
:root {
|
|
--three-dimensions-card-left-side-width: 1rem;
|
|
}
|
|
|
|
.three-dimensions-card {
|
|
position: relative;
|
|
}
|
|
|
|
/* The left side */
|
|
.three-dimensions-card::before {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
content: '';
|
|
|
|
/* Position */
|
|
top: var(--three-dimensions-card-left-side-width);
|
|
left: 0px;
|
|
position: absolute;
|
|
transform: translate(-100%, 0) skewY(-45deg);
|
|
transform-origin: left top;
|
|
|
|
/* Size */
|
|
height: 100%;
|
|
width: var(--three-dimensions-card-left-side-width);
|
|
}
|
|
|
|
/* The bottom side */
|
|
.three-dimensions-card::after {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
content: '';
|
|
|
|
/* Position */
|
|
bottom: 0px;
|
|
left: 0px;
|
|
position: absolute;
|
|
transform: translate(0, 100%) skewX(-45deg);
|
|
transform-origin: left top;
|
|
|
|
/* Size */
|
|
height: var(--three-dimensions-card-left-side-width);
|
|
width: 100%;
|
|
}
|