Нема описа

a11y.scss 906B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .screen-reader-text {
  2. border: 0;
  3. clip: rect(1px, 1px, 1px, 1px);
  4. -webkit-clip-path: inset(50%);
  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;
  13. word-break: normal;
  14. }
  15. .skip-link:focus {
  16. background-color: #f1f1f1;
  17. border-radius: 3px;
  18. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  19. clip: auto !important;
  20. -webkit-clip-path: none;
  21. clip-path: none;
  22. color: #21759b;
  23. display: block;
  24. font-size: 0.875rem;
  25. font-weight: 700;
  26. height: auto;
  27. left: 5px;
  28. line-height: normal;
  29. padding: 15px 23px 14px;
  30. text-decoration: none;
  31. top: 5px;
  32. width: auto;
  33. z-index: 100000;
  34. }
  35. /* Do not show the outline on the skip link target. */
  36. #content[tabindex="-1"]:focus {
  37. outline: 0;
  38. }
  39. @media (prefers-reduced-motion) {
  40. * {
  41. transition-delay: 0s !important;
  42. transition-duration: 0s !important;
  43. }
  44. }