kinklist/header/header.css

52 lines
880 B
CSS
Raw Normal View History

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;
margin-top: 0.5rem;
2025-12-14 21:28:50 +01:00
padding: 0.5rem;
border-width: 3px;
border-style: solid;
2025-12-15 19:16:32 +01:00
border-color: #c6a0f6;
2025-12-14 21:28:50 +01:00
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 {
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;
}
2025-12-15 19:16:32 +01:00
a {
text-decoration: none;
color: #cad3f5;
}
2025-12-14 21:28:50 +01:00
}