Redesign v2025.1

This commit is contained in:
Jonny Barnes 2025-12-11 17:17:01 +00:00
commit a8cb30456c
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
37 changed files with 1576 additions and 1174 deletions

30
resources/css/header.css Normal file
View file

@ -0,0 +1,30 @@
@layer components {
body > header {
display: grid;
grid-template-columns: auto 1fr auto;
grid-template-rows: auto auto;
align-items: baseline;
gap: 1rem;
a {
text-decoration: none;
}
h1 {
margin: 0;
text-wrap: nowrap;
}
nav {
display: flex;
flex-direction: row;
gap: .5rem;
@media screen and (width <= 1100px) {
grid-row: 2;
grid-column: 1 / span 3;
flex-wrap: wrap;
}
}
}
}