_accessibility.scss 924 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* Text meant only for screen readers. */
  2. .screen-reader-text {
  3. border: 0;
  4. clip: rect(1px, 1px, 1px, 1px);
  5. clip-path: inset(50%);
  6. height: 1px;
  7. margin: -1px;
  8. overflow: hidden;
  9. padding: 0;
  10. position: absolute !important;
  11. width: 1px;
  12. word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  13. &:focus {
  14. background-color: $color__background-screen;
  15. border-radius: 3px;
  16. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  17. clip: auto !important;
  18. clip-path: none;
  19. color: $color__text-screen;
  20. display: block;
  21. @include font-size(0.875);
  22. font-weight: bold;
  23. height: auto;
  24. left: 5px;
  25. line-height: normal;
  26. padding: 15px 23px 14px;
  27. text-decoration: none;
  28. top: 5px;
  29. width: auto;
  30. z-index: 100000; /* Above WP toolbar. */
  31. }
  32. }
  33. /* Do not show the outline on the skip link target. */
  34. #content[tabindex="-1"]:focus {
  35. outline: 0;
  36. }