mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
Liveries editor still to add, but no one in his right mind would change them manually since we have scripts for that
158 lines
2.4 KiB
CSS
158 lines
2.4 KiB
CSS
/* Page style */
|
|
#map-container {
|
|
height: 100%;
|
|
min-width: 820px;
|
|
width: 100%;
|
|
}
|
|
|
|
#toolbar-container {
|
|
align-items: center;
|
|
display: flex;
|
|
left: 10px;
|
|
position: absolute;
|
|
top: 10px;
|
|
z-index: 99999;
|
|
column-gap: 10px;
|
|
margin-right: 320px;
|
|
height: fit-content;
|
|
}
|
|
|
|
@media (max-width: 1820px) {
|
|
#toolbar-container {
|
|
flex-direction: column;
|
|
align-items: start;
|
|
row-gap: 10px;
|
|
}
|
|
}
|
|
|
|
#primary-toolbar {
|
|
align-items: center;
|
|
display: flex;
|
|
height: fit-content;
|
|
min-width: 650px;
|
|
}
|
|
|
|
@media (max-width: 1820px) {
|
|
#primary-toolbar {
|
|
row-gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
#command-mode-toolbar {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
#app-icon>.ol-select-options {
|
|
width: fit-content;
|
|
}
|
|
|
|
#toolbar-summary {
|
|
background-image: url("/images/icon-round.png");
|
|
background-position: 20px 22px;
|
|
background-repeat: no-repeat;
|
|
background-size: 45px 45px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20px;
|
|
text-indent: 60px;
|
|
}
|
|
|
|
#toolbar-summary {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#connection-status-panel {
|
|
bottom: 20px;
|
|
font-size: 12px;
|
|
position: absolute;
|
|
right: 10px;
|
|
width: 180px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
#server-status-panel {
|
|
bottom: 20px;
|
|
font-size: 12px;
|
|
position: absolute;
|
|
right: 200px;
|
|
width: 300px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
#mouse-info-panel {
|
|
bottom: 60px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: fit-content;
|
|
position: absolute;
|
|
right: 10px;
|
|
row-gap: 10px;
|
|
width: 180px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
#unit-control-panel {
|
|
height: fit-content;
|
|
left: 10px;
|
|
position: absolute;
|
|
top: 80px;
|
|
width: 320px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
@media (max-width: 1820px) {
|
|
#unit-control-panel {
|
|
top: 150px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1350px) {
|
|
#unit-control-panel {
|
|
top: 190px;
|
|
}
|
|
}
|
|
|
|
#unit-info-panel {
|
|
bottom: 20px;
|
|
font-size: 12px;
|
|
left: 10px;
|
|
position: absolute;
|
|
width: fit-content;
|
|
z-index: 9999;
|
|
padding: 24px 30px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
@media (max-width: 1525px) {
|
|
#unit-info-panel {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
#info-popup {
|
|
position: absolute;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
top: 100px;
|
|
left: 50%;
|
|
translate: -50% 0%;
|
|
z-index: 9999999999;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#log-panel {
|
|
position: absolute;
|
|
right: 0px;
|
|
top: 220px;
|
|
width: 310px;
|
|
height: fit-content;
|
|
z-index: 9990;
|
|
overflow: hidden;
|
|
padding: 10px;
|
|
}
|