layout and styling

This commit is contained in:
2026-05-13 17:00:38 -07:00
parent f0c9c354c1
commit 725ff3b000
6 changed files with 124 additions and 10 deletions

34
css/nav.css Normal file
View File

@ -0,0 +1,34 @@
/* Header, footer, nav */
#skip {
background-color: var(--color-bg);
position: absolute;
left: -999px;
top: -999px;
}
#skip:focus-visible {
left: 10%;
top: 5%;
}
header a[aria-current="page"]::before,
footer a[aria-current="page"]::before {
content: "> " / "";
}
header a[aria-current="page"]::after,
footer a[aria-current="page"]::after {
content: " <" / "";
}
header h2 a {
text-decoration: none;
}
nav ul {
display: flex;
justify-content: center;
flex-flow: row wrap;
list-style: none;
gap: 1rem;
}