mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
23 lines
329 B
CSS
23 lines
329 B
CSS
#info-popup {
|
|
position: absolute;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
top: 100px;
|
|
left: 50%;
|
|
translate: -50% 0%;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.ol-popup > div {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.visible {
|
|
opacity: 1;
|
|
}
|
|
|
|
.invisible {
|
|
opacity: 0;
|
|
transition: opacity 2s linear;
|
|
} |