local review resolutions, no content change

This commit is contained in:
2026-08-23 00:42:42 -05:00
parent 9fc5bfe9c7
commit 78aa49c0f3
11 changed files with 125 additions and 67 deletions

View File

@@ -2008,3 +2008,28 @@ tr {
from { background-position: 200% 0; }
to { background-position: -200% 0; }
}
/* Skip-to-content link (accessible navigation) */
.skip-link {
position: fixed;
top: -100%;
left: 50%;
transform: translateX(-50%);
z-index: 10000;
background: #000;
color: #fff;
padding: 0.75rem 1.5rem;
font-size: 0.95rem;
font-weight: 600;
text-decoration: none;
border: 2px solid currentColor;
border-radius: 0 0 4px 4px;
white-space: nowrap;
transition: top 0.15s ease;
}
.skip-link:focus {
top: 0;
outline: 2px solid #4E9A26;
outline-offset: 0;
}