57 lines
1.1 KiB
CSS
57 lines
1.1 KiB
CSS
.monitor-map {
|
|
background-color: #808080;
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: not-allowed;
|
|
border-top: solid 2px #808080;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.monitor-map > div {
|
|
width: fit-content;
|
|
height: fit-content;
|
|
position: absolute;
|
|
cursor: default;
|
|
display: flex;
|
|
}
|
|
|
|
.monitor-map-image {
|
|
user-select: none;
|
|
image-rendering: pixelated;
|
|
transform: scale(1, -1);
|
|
}
|
|
|
|
.monitor-map-view {
|
|
transform: scale(1, -1);
|
|
}
|
|
|
|
.paper-property-container {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 50%;
|
|
height: 240px;
|
|
}
|
|
|
|
.paper-title {
|
|
font-size: 12px;
|
|
padding: 0 5px;
|
|
position: absolute;
|
|
background-color: var(--mud-palette-surface);
|
|
top: 0px;
|
|
left: 15px;
|
|
}
|
|
|
|
.paper-property {
|
|
padding: 10px;
|
|
border-radius: var(--mud-default-borderradius);
|
|
border: 1px solid var(--mud-palette-lines-inputs);
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
margin: 8px;
|
|
} |