reset.scss 3.8 KB

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