2023-01-14 09:15:32 +01:00

69 lines
1.1 KiB
CSS

/* Variables definitions */
:root {
--background-color:#202831;
--title-color:#d3e9ff;
--text-color:white;
}
/* Page style */
body {
padding: 0;
margin: 0;
}
html, body {
height: 100%;
width: 100%;
}
#olympus-map-container
{
height: 100%;
width: 100%;
}
/* Panels style */
.olympus-panel {
background-color: var(--background-color);
border: solid white 1px;
font-size: 12px;
position: fixed;
transition: bottom 0.2s;
border-radius: 5px;
text-shadow: 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
box-shadow: 0px 0px 10px #000000AA;
font-family: "Lucida Console", "Courier New", monospace !important;
}
.olympus-panel table{
margin: 5px;
width: 100%;
}
.olympus-panel-title {
font-size: 14px;
color: #d3e9ff;
}
.olympus-panel-label {
font-size: 12px;
color: var(--title-color);
margin: 5px;
width: 100px;
}
.olympus-panel-content {
font-size: 12px;
color: var(--text-color);
margin: 5px;
}
/* Panels position */
#olympus-unit-info {
height: 100px;
width: 800px;
left: 10px;
bottom: 10px;
z-index: 1000;
display: flex;
}