38 lines
611 B
Stylus
38 lines
611 B
Stylus
.image-viewer-container {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(0, 0, 0, 0);
|
|
visibility: hidden;
|
|
z-index: $z-index-8;
|
|
padding: 6%;
|
|
box-sizing: border-box;
|
|
transition();
|
|
|
|
&.active {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
visibility: visible;
|
|
|
|
img {
|
|
cursor: zoom-out;
|
|
transform: scale(1);
|
|
padding: 2px;
|
|
background: var(--background-color);
|
|
}
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
transform: scale(0);
|
|
transition();
|
|
}
|
|
}
|
|
|
|
|