2025-12-14 19:31:52 +01:00
|
|
|
/* Header CSS */
|
2025-12-14 21:28:50 +01:00
|
|
|
header {
|
|
|
|
|
font-family: "Roboto Mono", monospace;
|
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-size: 14pt;
|
|
|
|
|
|
|
|
|
|
height: 1.5rem;
|
|
|
|
|
width: calc(100% - 1.5rem);
|
|
|
|
|
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
border-width: 3px;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
#hd-left {
|
|
|
|
|
width: min-width;
|
|
|
|
|
padding-left: 0.25rem;
|
|
|
|
|
padding-right: 0.25rem;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#hd-mid {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#hd-right {
|
2025-12-15 18:31:48 +01:00
|
|
|
display: flex;
|
|
|
|
|
width: fit-content;
|
2025-12-14 21:28:50 +01:00
|
|
|
padding-left: 0.25rem;
|
|
|
|
|
padding-right: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
|
width: 2rem;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|