Compare commits

..

2 Commits

Author SHA1 Message Date
101658ea04 fiddle with skip link placement 2026-01-02 18:48:33 -08:00
35e3f9631a remove rule that was doing nothing 2026-01-02 18:27:36 -08:00

View File

@ -41,14 +41,19 @@ nav a:focus-visible {
} }
#skip:focus-visible { #skip:focus-visible {
left: 3rem; left: -6rem;
top: 1.5rem;
width: auto; width: auto;
height: auto; height: auto;
overflow: auto; overflow: auto;
z-index: 999; z-index: 999;
} }
@media (max-width: 650px) {
#skip:focus-visible {
left: 6rem;
}
}
nav ul { nav ul {
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
@ -72,10 +77,6 @@ nav > #current-page {
visibility: hidden; visibility: hidden;
} }
nav > div > #current-page {
display: none;
}
header img { header img {
max-height: 25vh; max-height: 25vh;
max-width: 100%; max-width: 100%;