style.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. html {
  2. height: 100%;
  3. }
  4. header {
  5. nav {
  6. > div {
  7. > div {
  8. cursor: grab;
  9. overflow-x: auto;
  10. overflow-y: hidden;
  11. white-space: nowrap;
  12. -webkit-overflow-scrolling: touch;
  13. -ms-overflow-style: none;
  14. scrollbar-width: none;
  15. overflow: visible;
  16. > ul {
  17. > li {
  18. display: inline-block;
  19. a {
  20. user-select: none; /* 텍스트 선택 방지 */
  21. -webkit-user-drag: none; /* 드래그 방지 (웹킷 브라우저용) */
  22. -moz-user-select: none; /* 파이어폭스용 */
  23. -ms-user-select: none; /* IE/엣지용 */
  24. &:hover {
  25. color: chocolate !important;
  26. text-decoration: underline;
  27. }
  28. }
  29. }
  30. }
  31. }
  32. }
  33. }
  34. }
  35. body {
  36. display: flex;
  37. flex-direction: column;
  38. height: 100vh;
  39. main {
  40. flex: 1;
  41. margin-bottom: 70px;
  42. }
  43. }
  44. footer {
  45. bottom: 0;
  46. width: 100%;
  47. white-space: nowrap;
  48. line-height: 60px;
  49. iframe {
  50. width: inherit;
  51. }
  52. small {
  53. display: block;
  54. line-height: initial;
  55. }
  56. }
  57. #priceItemList, #priceItemInfo, #goldPriceInfo, #oilPriceInfo, #emissionPriceInfo, #flowerPrice, #dayHoliday, #dayAnniversary, #daySeasonal, #daySundry, #financialExchange, #globalPriceList {
  58. min-width: 740px;
  59. thead {
  60. tr {
  61. th {
  62. text-align: center;
  63. background-color: #eee;
  64. vertical-align: middle;
  65. }
  66. }
  67. }
  68. tbody {
  69. tr {
  70. td {
  71. text-align: center;
  72. vertical-align: middle;
  73. span[data-bs-toggle="tooltip"] {
  74. color: blue;
  75. cursor: pointer;
  76. font-weight: bold;
  77. }
  78. }
  79. }
  80. }
  81. }
  82. #financialInterest, #fifaRanks {
  83. thead {
  84. tr {
  85. th {
  86. text-align: center;
  87. background-color: #eee;
  88. vertical-align: middle;
  89. }
  90. }
  91. }
  92. tbody {
  93. tr {
  94. td {
  95. text-align: center;
  96. vertical-align: middle;
  97. img {
  98. width: 60%;
  99. max-width: 140px;
  100. }
  101. }
  102. }
  103. }
  104. }
  105. #financialInternational {
  106. table {
  107. thead {
  108. tr {
  109. th {
  110. text-align: center;
  111. background-color: #eee;
  112. vertical-align: middle;
  113. }
  114. }
  115. }
  116. tbody {
  117. tr {
  118. td {
  119. text-align: center;
  120. vertical-align: middle;
  121. }
  122. }
  123. }
  124. }
  125. }
  126. .lotto {
  127. thead, tfoot {
  128. th {
  129. text-align: center;
  130. background-color: #eee;
  131. vertical-align: middle;
  132. }
  133. }
  134. }
  135. #whois, #businessNumber {
  136. .no-data, .result {
  137. background-color: #eee;
  138. border: 1px solid #bbb;
  139. border-radius: 5px;
  140. margin-top: 10px;
  141. padding: 20px;
  142. }
  143. .no-data {
  144. text-align: center;
  145. }
  146. .result {
  147. text-align: left;
  148. }
  149. }
  150. #pagination {
  151. justify-items: center;
  152. }
  153. .navbar-nav .dropdown-menu {
  154. padding-left: 10px;
  155. }
  156. @media (min-width: 576px) {
  157. .navbar-expand-sm .navbar-nav .dropdown-menu {
  158. padding-left: 0;
  159. }
  160. }
  161. @media (max-width: 767.98px) {
  162. a.navbar-brand {
  163. display: block !important;
  164. }
  165. }
  166. @media (max-width: 991.98px) {
  167. a.navbar-brand {
  168. display: none;
  169. }
  170. footer {
  171. position: relative !important;
  172. text-align: center;
  173. }
  174. }