skip-link.css 566 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Skip link
  10. *
  11. * Allows keyboard users to quickly skip to the main content of the page.
  12. */
  13. .skip-link {
  14. z-index: 50;
  15. left: 50%;
  16. padding: 1px 10px 2px;
  17. transform: translateX(-50%);
  18. color: #fff;
  19. border-radius: 0 0 10px 10px;
  20. background: #444;
  21. font-size: 0.94em;
  22. }
  23. .skip-link:focus {
  24. text-decoration: none;
  25. }
  26. .skip-link.visually-hidden.focusable:focus {
  27. position: absolute !important;
  28. }