27 lines
No EOL
347 B
CSS
27 lines
No EOL
347 B
CSS
.image-stack {
|
|
position: relative;
|
|
width: 300px;
|
|
height: 360px;
|
|
}
|
|
|
|
.image-stack .layer {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.image-stack .bg {
|
|
z-index: 1;
|
|
}
|
|
|
|
.image-stack .fg {
|
|
padding: 35px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.image-stack .frame {
|
|
z-index: 3;
|
|
} |