skip-link.css
55 lines
| 1 | .ea11y-skip-to-content-link { |
| 2 | clip: rect(1px, 1px, 1px, 1px); |
| 3 | clip-path: inset(50%); |
| 4 | pointer-events: none; |
| 5 | |
| 6 | position: fixed; |
| 7 | |
| 8 | height: 1px; |
| 9 | width: 1px; |
| 10 | margin: -1px; |
| 11 | padding: 0; |
| 12 | overflow: hidden; |
| 13 | |
| 14 | display: flex; |
| 15 | align-items: center; |
| 16 | gap: 8px; |
| 17 | |
| 18 | border-radius: 12px; |
| 19 | border: 1px solid #2563EB; |
| 20 | |
| 21 | background-color: #fff; |
| 22 | color: #0C0D0E; |
| 23 | |
| 24 | text-decoration: none; |
| 25 | word-wrap: normal !important; |
| 26 | } |
| 27 | |
| 28 | .ea11y-skip-to-content-link:focus { |
| 29 | clip: auto !important; |
| 30 | clip-path: none; |
| 31 | pointer-events: auto; |
| 32 | |
| 33 | top: 30px; |
| 34 | left: 30px; |
| 35 | z-index: 100000; |
| 36 | |
| 37 | |
| 38 | height: auto; |
| 39 | width: auto; |
| 40 | padding: 16px 24px; |
| 41 | } |
| 42 | |
| 43 | .ea11y-skip-to-content-link:focus + .ea11y-skip-to-content-backdrop { |
| 44 | position: fixed; |
| 45 | |
| 46 | top: 0; |
| 47 | right: 0; |
| 48 | left: 0; |
| 49 | bottom: 0; |
| 50 | |
| 51 | z-index: 9999; |
| 52 | |
| 53 | background-color: rgba(0, 0, 0, 0.50); |
| 54 | } |
| 55 |