_accessibility.scss 705 B

123456789101112131415161718192021222324252627282930
  1. // ==========================================================================
  2. // Accessibility
  3. // ==========================================================================
  4. // Text meant only for screen readers
  5. .screen-reader-text {
  6. clip: rect(1px, 1px, 1px, 1px);
  7. position: absolute !important;
  8. &:hover,
  9. &:active,
  10. &:focus {
  11. background-color: #f1f1f1;
  12. border-radius: 3px;
  13. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  14. clip: auto !important;
  15. color: #21759b;
  16. display: block;
  17. font-size: 14px;
  18. font-weight: bold;
  19. height: auto;
  20. left: 5px;
  21. line-height: normal;
  22. padding: 15px 23px 14px;
  23. text-decoration: none;
  24. top: 5px;
  25. width: auto;
  26. z-index: 100000; // Above WP toolbar
  27. }
  28. }