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.

104 lines
1.6 KiB

  1. .ellipsis { text-overflow:ellipsis; white-space:nowrap; word-wrap:normal; overflow:hidden; }
  2. .admin-help-wrap {
  3. width:700px; margin:0 auto;
  4. li > img {width:700px;}
  5. .point-color {color:#e60035}
  6. }
  7. .sr-only {
  8. position: absolute;
  9. width: 1px;
  10. height: 1px;
  11. padding: 0;
  12. overflow: hidden;
  13. clip: rect(0, 0, 0, 0);
  14. white-space: nowrap;
  15. border: 0;
  16. &.sr-only-focusable {
  17. &:active,
  18. &:focus {
  19. position: static;
  20. width: auto;
  21. height: auto;
  22. overflow: visible;
  23. clip: auto;
  24. white-space: normal;
  25. }
  26. }
  27. }
  28. .clearfix {
  29. &,
  30. &:before,
  31. &:after {
  32. @include clear-fix();
  33. }
  34. }
  35. /* 높이/너비/마진/패딩 */
  36. @for $i from 1 to 201 {
  37. .H#{$i * 5} {
  38. height: 5px * $i !important;
  39. }
  40. }
  41. @for $i from 1 to 201{
  42. .W#{$i * 5} {
  43. width: 5px * $i !important;
  44. }
  45. }
  46. @for $i from 1 to 10 {
  47. .M#{$i * 5} {
  48. margin:5px * $i;
  49. }
  50. .MT#{$i * 5} {
  51. margin-top:5px * $i;
  52. }
  53. .MR#{$i*5} {
  54. margin-right:5px * $i;
  55. }
  56. .MB#{$i * 5} {
  57. margin-bottom:5px * $i;
  58. }
  59. .ML#{$i * 5} {
  60. margin-left:5px * $i;
  61. }
  62. .PT#{$i * 5} {
  63. padding-top:5px * $i;
  64. }
  65. .PR#{$i * 5} {
  66. padding-right:5px * $i;
  67. }
  68. .PB#{$i * 5} {
  69. padding-bottom:5px * $i;
  70. }
  71. .PL#{$i * 5} {
  72. padding-left:5px * $i;
  73. }
  74. .P#{$i * 5} {
  75. padding:5px * $i;
  76. }
  77. }
  78. .text-center {
  79. text-align:center !important;
  80. }
  81. .text-left {
  82. text-align:left !important;
  83. }
  84. .text-right {
  85. text-align:right !important;
  86. }
  87. .margin-auto {
  88. margin-left:auto !important;
  89. margin-right:auto !important;
  90. }
  91. .img-responsive {
  92. display: block;
  93. max-width: 100%;
  94. height: auto;
  95. }