refactor: Remove skip-to-content link per user request

This commit is contained in:
2025-11-13 19:15:42 +00:00
parent 28dce2223d
commit 21a1078d64
5 changed files with 14 additions and 40 deletions

View File

@@ -71,7 +71,7 @@ body {
border-width: 0;
}
/* Screen Reader Only Focusable - Show on focus (for skip links) */
/* Screen Reader Only Focusable - Show on focus */
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
@@ -82,29 +82,6 @@ body {
white-space: normal;
}
/* Skip to Main Content Link */
.skip-link {
position: absolute;
top: -100px;
left: 10px;
z-index: 10000;
padding: 0.75rem 1.5rem;
background: var(--primary-blue);
color: white;
border-radius: var(--radius-md);
font-weight: 600;
text-decoration: none;
box-shadow: var(--shadow-lg);
transition: top 0.3s ease;
}
.skip-link:focus {
top: 10px;
outline: 3px solid var(--warning-orange);
outline-offset: 2px;
color: white;
}
/* Modern Card Styling */
.card {
border: 1px solid var(--grey-200);