/* a11y-fixes.css — Gitea custom public CSS overrides for WCAG 2.1 AA */ /* V4 (#548): Green inline links — darken + underline for contrast */ .markdown-body a, .markdown-body a:not(.label):not([class]) { color: #507020 !important; text-decoration: underline !important; } .markdown-body a:hover, .markdown-body a:focus { color: #3a5518 !important; } /* V1 (#545): Skip navigation link — visually hidden until keyboard focus */ .skip-link { position: absolute; top: -40px; left: 0; background: #000; color: #fff; padding: 8px 16px; z-index: 10000; transition: top 0.3s ease-in-out; } .skip-link:focus { top: 0; }