mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-06-20 13:50:34 -04:00
39 lines
585 B
CSS
39 lines
585 B
CSS
.image-preview {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
overflow-y: scroll;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 50;
|
|
}
|
|
.image {
|
|
z-index: 5;
|
|
}
|
|
.image-operation {
|
|
position: absolute;
|
|
left: calc(50% - 172px);
|
|
bottom: 30px;
|
|
color: white;
|
|
font-size: 30px;
|
|
z-index: 6;
|
|
}
|
|
.zoom-in-icon,
|
|
.zoom-out-icon,
|
|
.save-icon,
|
|
.clockwise-icon,
|
|
.counterclockwise-icon {
|
|
margin: 20px;
|
|
cursor: pointer;
|
|
}
|
|
.image-background {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|