45 lines
574 B
CSS
45 lines
574 B
CSS
.imgmodal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
padding-top: 10px;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: #000000;
|
|
}
|
|
|
|
.imgbox {
|
|
display: grid;
|
|
height: 100%;
|
|
}
|
|
|
|
.center-fit {
|
|
max-width: 100%;
|
|
max-height: 100vh;
|
|
margin: auto;
|
|
}
|
|
|
|
.close {
|
|
color: white;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 25px;
|
|
font-size: 35px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.rotate {
|
|
color: white;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 65px;
|
|
font-size: 35px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.cursor {
|
|
cursor: pointer;
|
|
} |