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.
 
 
 
 

42 regels
785 B

  1. @charset "UTF-8";
  2. //
  3. // Scaffolding
  4. // --------------------------------------------------
  5. // Only display content to screen readers
  6. //
  7. // See: http://a11yproject.com/posts/how-to-hide-content/
  8. .sr-only {
  9. position: absolute;
  10. width: 1px;
  11. height: 1px;
  12. margin: -1px;
  13. padding: 0;
  14. overflow: hidden;
  15. clip: rect(0,0,0,0);
  16. border: 0;
  17. }
  18. // Use in conjunction with .sr-only to only display content when it's focused.
  19. // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
  20. // Credit: HTML5 Boilerplate
  21. .sr-only-focusable {
  22. &:active,
  23. &:focus {
  24. position: static;
  25. width: auto;
  26. height: auto;
  27. margin: 0;
  28. overflow: visible;
  29. clip: auto;
  30. }
  31. }
  32. .hidden {
  33. display: none !important;
  34. visibility: hidden;
  35. }