You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_visibility.css 998B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. VISIBILITY
  3. Media Query Extensions:
  4. -ns = not-small
  5. -m = medium
  6. -l = large
  7. */
  8. /*
  9. Text that is hidden but accessible
  10. Ref: http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
  11. */
  12. .clip {
  13. position: fixed !important;
  14. _position: absolute !important;
  15. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  16. clip: rect(1px, 1px, 1px, 1px);
  17. }
  18. @media (--breakpoint-not-small) {
  19. .clip-ns {
  20. position: fixed !important;
  21. _position: absolute !important;
  22. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  23. clip: rect(1px, 1px, 1px, 1px);
  24. }
  25. }
  26. @media (--breakpoint-medium) {
  27. .clip-m {
  28. position: fixed !important;
  29. _position: absolute !important;
  30. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  31. clip: rect(1px, 1px, 1px, 1px);
  32. }
  33. }
  34. @media (--breakpoint-large) {
  35. .clip-l {
  36. position: fixed !important;
  37. _position: absolute !important;
  38. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  39. clip: rect(1px, 1px, 1px, 1px);
  40. }
  41. }