reset.scss 3.7 KB

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