reset.css 2.8 KB

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