56 lines
1.0 KiB
CSS
56 lines
1.0 KiB
CSS
.map-localization-container {
|
|
background-color: #bfbfbf;
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: not-allowed;
|
|
border-top: solid 2px #808080;
|
|
overflow: hidden;
|
|
position: relative;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.map-view-movement {
|
|
width: fit-content;
|
|
height: fit-content;
|
|
position: absolute;
|
|
cursor: default;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.map-canvas {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(1, -1);
|
|
transform-origin: center;
|
|
pointer-events: none;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
.map-editor {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(1, -1);
|
|
transform-origin: center;
|
|
}
|
|
|
|
.map-mouse-position {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 10px;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
color: white;
|
|
padding: 5px 10px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.map-mouse-position span {
|
|
white-space: nowrap;
|
|
}
|