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.

32 lines
625 B

  1. /***************************************************************************************
  2. * 유틸리티
  3. ****************************************************************************************/
  4. .sr-only {
  5. position: absolute;
  6. width: 1px;
  7. height: 1px;
  8. padding: 0;
  9. overflow: hidden;
  10. clip: rect(0, 0, 0, 0);
  11. white-space: nowrap;
  12. border: 0;
  13. &.sr-only-focusable {
  14. &:active,
  15. &:focus {
  16. position: static;
  17. width: auto;
  18. height: auto;
  19. overflow: visible;
  20. clip: auto;
  21. white-space: normal;
  22. }
  23. }
  24. }
  25. .clearfix {
  26. &,
  27. &:before,
  28. &:after {
  29. @include clear-fix();
  30. }
  31. }