2023-11-13 08:05:05 +00:00
|
|
|
.Lightbox {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgb(0 0 0 / 80%);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 10000;
|
|
|
|
|
|
|
|
.image {
|
|
|
|
max-width: 90%;
|
|
|
|
max-height: 80%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
2023-11-13 16:55:32 +00:00
|
|
|
position: fixed;
|
|
|
|
z-index: 1001;
|
2023-11-13 08:05:05 +00:00
|
|
|
top: 20px;
|
|
|
|
right: 40px;
|
|
|
|
font-size: 30px;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomControls {
|
|
|
|
display: flex;
|
2023-11-13 16:55:32 +00:00
|
|
|
position: fixed;
|
2023-11-13 08:05:05 +00:00
|
|
|
bottom: 16px;
|
|
|
|
left: 50%;
|
|
|
|
height: 24px;
|
|
|
|
gap: 1rem;
|
|
|
|
transform: translateX(-50%);
|
2023-11-13 16:55:32 +00:00
|
|
|
z-index: 1001;
|
2023-11-13 08:05:05 +00:00
|
|
|
|
|
|
|
.control {
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|