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.

76 lines
1.3 KiB

  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. }
  32. /* 높이/너비/마진/패딩 */
  33. @for $i from 2 to 10 {
  34. .H#{$i * 5} {
  35. height: 5px * $i !important;
  36. }
  37. }
  38. @for $i from 2 to 20 {
  39. .W#{$i * 25} {
  40. width: 25px * $i !important;
  41. }
  42. }
  43. @for $i from 1 to 10 {
  44. .M#{$i * 5} {
  45. margin:5px * $i;
  46. }
  47. .MT#{$i * 5} {
  48. margin-top:5px * $i;
  49. }
  50. .MR#{$i*5} {
  51. margin-right:5px * $i;
  52. }
  53. .MB#{$i * 5} {
  54. margin-bottom:5px * $i;
  55. }
  56. .ML#{$i * 5} {
  57. margin-left:5px * $i;
  58. }
  59. .PT#{$i * 5} {
  60. padding-top:5px * $i;
  61. }
  62. .PR#{$i * 5} {
  63. padding-right:5px * $i;
  64. }
  65. .PB#{$i * 5} {
  66. padding-bottom:5px * $i;
  67. }
  68. .PL#{$i * 5} {
  69. padding-left:5px * $i;
  70. }
  71. .P#{$i * 5} {
  72. padding:5px * $i;
  73. }
  74. }