35 lines
752 B
CSS
35 lines
752 B
CSS
|
|
.backdrop {
|
||
|
|
position: fixed;
|
||
|
|
inset: 0;
|
||
|
|
z-index: 1000;
|
||
|
|
display: grid;
|
||
|
|
place-items: center;
|
||
|
|
padding: 40px;
|
||
|
|
background: color-mix(in srgb, var(--dsw-alias-label-primary) 74%, transparent);
|
||
|
|
}
|
||
|
|
|
||
|
|
.image {
|
||
|
|
max-width: min(100%, 1600px);
|
||
|
|
max-height: calc(100vh - 80px);
|
||
|
|
object-fit: contain;
|
||
|
|
border-radius: 12px;
|
||
|
|
background: var(--dsw-specific-input-major);
|
||
|
|
box-shadow: var(--dsw-shadow-lv3);
|
||
|
|
}
|
||
|
|
|
||
|
|
.close {
|
||
|
|
position: fixed;
|
||
|
|
top: 20px;
|
||
|
|
right: 20px;
|
||
|
|
display: grid;
|
||
|
|
place-items: center;
|
||
|
|
width: 36px;
|
||
|
|
height: 36px;
|
||
|
|
border: 1px solid var(--dsw-alias-border-l2-darkmode-thin);
|
||
|
|
border-radius: 999px;
|
||
|
|
background: var(--dsw-specific-input-major);
|
||
|
|
color: var(--dsw-alias-label-primary);
|
||
|
|
font-size: 24px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|