Sha256: 46404dd22da23fe726b4080b4d4c11b184f077db83c07e30a209a3d8422b40b1
Contents?: true
Size: 546 Bytes
Versions: 21
Compression:
Stored size: 546 Bytes
Contents
/** * Skip Link Component * * Notes: * * - Should be the first element in your <body> * - Ensure the target (e.g. #main) exists within your pages. * * Example Usage: * * <a href="#main" class="skip-link">Skip to main content</a> */ .skip-link { display: block; position: absolute; left: -9999em; &:focus { position: relative; left: inherit; background: $yellow; color: $black; text-decoration: none; padding: 5px $gutter-half; @include media(tablet) { padding: 5px $gutter; } } }
Version data entries
21 entries across 21 versions & 2 rubygems