reset.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. html {
  2. scrollbar-width: auto;
  3. scrollbar-color: hsla(0, 0%, 53%, .5) #585858;
  4. -ms-overflow-style: scrollbar;
  5. -webkit-overflow-scrolling: auto;
  6. }
  7. input[type="number"]::-webkit-outer-spin-button,
  8. input[type="number"]::-webkit-inner-spin-button {
  9. -webkit-appearance: none;
  10. margin: 0;
  11. }
  12. a {
  13. text-decoration: none;
  14. &:hover,
  15. &:focus,
  16. &:active {
  17. text-decoration: underline;
  18. }
  19. }
  20. label {
  21. cursor: pointer;
  22. }
  23. /* 기본 버튼 */
  24. .btn-default {
  25. display: inline-block;
  26. color: #565656 !important;
  27. background-color: #f5f5f5 !important;
  28. border-color: #b5b5b5 !important;
  29. &:hover,
  30. &:focus,
  31. &:active,
  32. &.active {
  33. text-decoration: none !important;
  34. background: #ffffff !important;
  35. color: #0f0f0f !important;
  36. border-color: #b5b5b5 !important;
  37. }
  38. }
  39. /* 색상 추가 */
  40. .txt-red {color: red;}
  41. .txt-green {color: green;}
  42. .txt-blue {color: blue;}
  43. /* 목록 가로선 */
  44. .divider {width: 1px;height: 14px;border-left: 1px solid #979797;display: inline-block;margin-left: 16px;margin-right: 16px;vertical-align: middle;}
  45. .ellip {display: -webkit-box;overflow: hidden;word-break: break-all;text-overflow: ellipsis;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
  46. /* 레이어 팝업 */
  47. #layerPops {
  48. .layer-pops {
  49. position: fixed;
  50. top: 50%;
  51. left: 50%;
  52. transform: translate(-50%, -50%);
  53. z-index: 9999;
  54. background: rgb(255, 255, 255);
  55. width: 300px;
  56. height: 400px;
  57. border: 1px solid #646464;
  58. display: none;
  59. outline: none;
  60. article {
  61. &:nth-of-type(2) {
  62. position: absolute;
  63. width: 100%;
  64. bottom: 0;
  65. border-top: 1px solid #000;
  66. &::after {
  67. content: "";
  68. display: block;
  69. clear: both;
  70. }
  71. button {
  72. width: 50%;
  73. float: left;
  74. border: 0;
  75. padding: 5px;
  76. background: transparent;
  77. border-left: 1px solid #646464;
  78. &:hover,
  79. &:focus {
  80. background-color: #eee;
  81. }
  82. &:first-child {
  83. border-left: none;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. }
  90. /* 처리중 */
  91. #loading {
  92. display: none;
  93. background: #000;
  94. opacity: 40%;
  95. position: fixed;
  96. top: 0;
  97. width: 100%;
  98. height: 100%;
  99. text-align: center;
  100. z-index: 9999;
  101. figure {
  102. position: fixed;
  103. top: 50%;
  104. left: 50%;
  105. transform: translate(-50%, -50%);
  106. img {
  107. width: 50%;
  108. }
  109. figcaption {
  110. position: relative;
  111. top: -50px;
  112. font-size: 17px;
  113. color: #bbb;
  114. }
  115. }
  116. }
  117. /* date-picker */
  118. .ui-datepicker-calendar {
  119. min-width: inherit;
  120. }
  121. .navigate {
  122. .nav {
  123. .nav-item {
  124. .nav-link.active {
  125. font-weight: bold;
  126. text-decoration: underline;
  127. }
  128. }
  129. }
  130. }