kinklist/header/header.css
2025-12-14 21:30:22 +01:00

43 lines
734 B
CSS

/* Header CSS */
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 {
width: min-width;
padding-left: 0.25rem;
padding-right: 0.25rem;
}
.spacer {
width: 2rem;
display: block;
}
}