mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
94 lines
1.2 KiB
CSS
94 lines
1.2 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-buttons {
|
|
position: absolute;
|
|
top: 10px;
|
|
height: fit-content;
|
|
width: fit-content;
|
|
right: 10px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
#unit-control-panel {
|
|
display: none;
|
|
position: absolute;
|
|
top: 10px;
|
|
height: fit-content;
|
|
width: 250px;
|
|
right: 10px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
#connection-status-panel {
|
|
position: absolute;
|
|
height: 30px;
|
|
width: 140px;
|
|
bottom: 10px;
|
|
right: 10px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
@media only screen and (max-width: 1000px) {
|
|
#unit-control-buttons {
|
|
top: 50px;
|
|
}
|
|
|
|
#unit-control-panel {
|
|
top: 50px;
|
|
}
|
|
} |