Initial commit

This commit is contained in:
2026-07-13 09:25:40 +07:00
parent c08ff54676
commit bccfb156d7
1938 changed files with 641646 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
.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;
}