view.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. @charset "UTF-8";
  2. /* 게시판 보기 */
  3. #boardView {
  4. box-sizing: border-box;
  5. padding: calc(var(--bs-gutter-x) * 0.5);
  6. }
  7. #boardView .head h5 {
  8. font-weight: bold;
  9. margin-bottom: 0;
  10. }
  11. #boardView .body {
  12. margin: 20px 0;
  13. }
  14. #boardView .body table {
  15. border: 1px solid #333;
  16. margin-bottom: 6px;
  17. }
  18. > #boardView .body table:not(:first-child) {
  19. border-top: none;
  20. }
  21. #boardView .body table tr th, #boardView .body table tr td {
  22. text-align: initial;
  23. vertical-align: middle;
  24. }
  25. #boardView .body table thead tr th {
  26. background: none;
  27. border-bottom: 1px solid #333;
  28. }
  29. #boardView .body table thead tr th h4 {
  30. padding: 5px 10px;
  31. margin: 0;
  32. }
  33. #boardView .body table thead tr td strong {
  34. font-size: 16px;
  35. }
  36. #boardView .body table thead tr td small {
  37. vertical-align: baseline;
  38. margin-left: 10px;
  39. padding-left: 10px;
  40. border-left: 1px solid #2c3946;
  41. }
  42. #boardView .body table thead tr td ul {
  43. display: inline-block;
  44. list-style: none;
  45. margin: 0;
  46. padding: 0;
  47. }
  48. #boardView .body table thead tr td ul > li {
  49. display: inline-block;
  50. }
  51. #boardView .body table thead tr td ul > li::after {
  52. display: inline-block;
  53. content: "";
  54. width: 1px;
  55. height: 11px;
  56. background: #2c3946;
  57. vertical-align: -2px;
  58. margin: 0;
  59. }
  60. #boardView .body table thead tr td ul > li span {
  61. padding: 0 10px;
  62. }
  63. #boardView .body table thead tr td ul > li span var {
  64. font-style: inherit;
  65. }
  66. #boardView .body table thead tr td ul > li:first-child span {
  67. padding-left: 0;
  68. }
  69. #boardView .body table thead tr td ul > li:last-child span {
  70. padding-right: 0;
  71. }
  72. #boardView .body table thead tr td ul > li:last-child::after {
  73. display: none;
  74. width: 0;
  75. }
  76. #boardView .body table thead tr td ol {
  77. min-width: auto;
  78. margin-left: 20px;
  79. border-radius: 0;
  80. border-color: #cfcfcf #999 #666 #999;
  81. border-width: 1px 1px 1px 0;
  82. border-style: solid;
  83. box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
  84. -moz-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
  85. -webkit-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
  86. }
  87. #boardView .body table thead tr td ol > li {
  88. line-height: initial;
  89. padding: 0.4rem 1.2rem;
  90. cursor: pointer;
  91. }
  92. #boardView .body table thead tr td ol > li:hover, #boardView .body table thead tr td ol > li:focus, #boardView .body table thead tr td ol > li:active {
  93. background: #eaeaea;
  94. color: #000;
  95. }
  96. #boardView .body table thead tr td ol > li i {
  97. margin-right: 3px;
  98. }
  99. #boardView .body table thead tr:nth-of-type(2) th {
  100. padding-left: 18px;
  101. }
  102. #boardView .body table thead tr:nth-of-type(2) td {
  103. padding-right: 18px;
  104. padding-bottom: 0;
  105. }
  106. #boardView .body table thead tr:nth-of-type(2) td:last-child {
  107. text-align: right;
  108. }
  109. #boardView .body table thead tr:nth-of-type(3) th {
  110. padding-left: 18px;
  111. }
  112. #boardView .body table thead tr:nth-of-type(3) td {
  113. padding-right: 18px;
  114. padding-top: 0;
  115. }
  116. #boardView .body table thead tr:nth-of-type(3) td:last-child {
  117. text-align: right;
  118. }
  119. #boardView .body table thead tr:last-child {
  120. border-bottom: 1px solid #333;
  121. }
  122. #boardView .body table tbody tr td ol {
  123. list-style: none;
  124. margin: 0;
  125. padding: 2px 10px;
  126. }
  127. #boardView .body table tbody tr td ol > li {
  128. margin-bottom: 6px;
  129. }
  130. #boardView .body table tbody tr td ol > li i {
  131. vertical-align: -2px;
  132. }
  133. #boardView .body table tbody tr td ol > li:last-child {
  134. margin-bottom: 0;
  135. }
  136. #boardView .body table tbody tr td blockquote {
  137. min-height: 300px;
  138. padding: 2px 10px;
  139. margin: 0;
  140. }
  141. #boardView .body table tbody tr td blockquote img {
  142. max-width: 100%;
  143. }
  144. #boardView .body table tbody tr td blockquote pre[class*=language-],
  145. #boardView .body table tbody tr td blockquote code[class*=language-] {
  146. overflow: auto;
  147. white-space: break-spaces;
  148. word-break: break-word;
  149. }
  150. #boardView .body table tfoot tr td {
  151. text-align: center;
  152. }
  153. #boardView .body table tfoot tr td button {
  154. margin: 0 2px 0 2px;
  155. }
  156. #boardView .body table tfoot tr:last-child td {
  157. text-align: left;
  158. padding: 10px 18px 18px 18px;
  159. }
  160. #boardView .foot {
  161. box-sizing: content-box;
  162. }
  163. #boardView .foot table {
  164. border: 1px solid #333;
  165. margin-bottom: 0;
  166. }
  167. #boardView .foot table tr th, #boardView .foot table tr td {
  168. text-align: initial;
  169. vertical-align: middle;
  170. }
  171. #boardView .foot table thead tr th {
  172. background: transparent;
  173. border-bottom: 1px solid #333;
  174. }
  175. #boardView .foot table thead tr th h5 {
  176. font-size: 16px;
  177. font-weight: normal;
  178. margin-bottom: 0;
  179. padding: 6px 12px;
  180. }
  181. #boardView .foot table tbody tr td {
  182. border-top: 0;
  183. }/*# sourceMappingURL=view.css.map */