style.css 4.1 KB

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