2023-01-24 18:50:08 +01:00

86 lines
1.1 KiB
CSS

/* Page style */
body {
padding: 0;
margin: 0;
}
html,
body {
height: 100%;
width: 100%;
}
#map-container {
height: 100%;
width: 100%;
min-width: 820px;
}
#unit-info-panel {
position: fixed;
height: 160px;
width: 800px;
left: 10px;
bottom: 10px;
z-index: 1000;
}
#map-source-dropdown {
position: absolute;
left: 10px;
top: 10px;
width: 200px;
color: black;
}
#scenario-dropdown {
position: absolute;
left: 220px;
top: 10px;
width: 200px;
}
#visibility-control-panel {
position: absolute;
left: 430px;
height: 30px;
width: 110;
top: 10px;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 10px;
padding-right: 10px;
}
#unit-control-panel {
position: absolute;
left: 50%;
margin-left: -60px;
height: 30px;
width: 120px;
top: 10px;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 10px;
padding-right: 10px;
}
#connection-status-panel {
position: absolute;
height: 30px;
width: 140px;
top: 10px;
right: 10px;
z-index: 1000;
}
@media only screen and (max-width: 1440px) {
#unit-control-panel {
top: 50px;
}
}