_accessibility.scss 707 B

1234567891011121314151617181920212223242526272829303132
  1. /* Text meant only for screen readers. */
  2. .screen-reader-text {
  3. clip: rect(1px, 1px, 1px, 1px);
  4. position: absolute !important;
  5. height: 1px;
  6. width: 1px;
  7. overflow: hidden;
  8. &:focus {
  9. background-color: $color__background-screen;
  10. border-radius: 3px;
  11. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  12. clip: auto !important;
  13. color: $color__text-screen;
  14. display: block;
  15. @include font-size(0.825);
  16. font-weight: bold;
  17. height: auto;
  18. left: 5px;
  19. line-height: normal;
  20. padding: 15px 23px 14px;
  21. text-decoration: none;
  22. top: 5px;
  23. width: auto;
  24. z-index: 100000; /* Above WP toolbar. */
  25. }
  26. }
  27. /* Do not show the outline on the skip link target. */
  28. #content[tabindex="-1"]:focus {
  29. outline: 0;
  30. }