mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-06 18:30:57 +00:00

* CSS corrections * HTML corrections * JS corrections * JAVA corrections * remove tab * CSS corrections 2 * JS corrections 2 * back to the roots * max-linie 127 * add slash hr|br * return bootstrap-icons.css * return bootstrap-icons.min.css * return bootstrap.min.css * Update bootstrap-icons.css * Update bootstrap-icons.min.css * Update bootstrap-icons.min.css * Update bootstrap.min.css * CSS corrections * HTML corrections * JS corrections * JAVA corrections * remove tab * CSS corrections 2 * JS corrections 2 * back to the roots * max-linie 127 * add slash hr|br * return bootstrap-icons.css * Update bootstrap-icons.css * Bootstrap CSS * Update prism.css
44 lines
785 B
CSS
44 lines
785 B
CSS
#image-highlighter {
|
|
position: fixed;
|
|
display: flex;
|
|
inset: 0;
|
|
z-index: 10000;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
visibility: hidden;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition:
|
|
visbility 0.1s linear,
|
|
background-color 0.1s linear;
|
|
}
|
|
|
|
#image-highlighter > * {
|
|
max-width: 80vw;
|
|
max-height: 80vh;
|
|
animation: image-highlight 0.1s linear;
|
|
transition:
|
|
transform 0.1s linear,
|
|
opacity 0.1s linear;
|
|
}
|
|
|
|
#image-highlighter > *.remove {
|
|
transform: scale(0.8) !important;
|
|
opacity: 0 !important;
|
|
}
|
|
|
|
#image-highlighter:not(:empty) {
|
|
background-color: rgba(0, 0, 0, 0.37);
|
|
visibility: visible;
|
|
}
|
|
|
|
@keyframes image-highlight {
|
|
from {
|
|
transform: scale(0.8);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|