view.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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 #222c36;
  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: left;
  23. vertical-align: middle;
  24. word-break: break-all;
  25. }
  26. #boardView .body table thead tr th {
  27. background: #090a0b;
  28. border-bottom: 1px solid #222c36;
  29. }
  30. #boardView .body table thead tr th h5 {
  31. margin-bottom: 0;
  32. padding: 5px 0;
  33. }
  34. #boardView .body table thead tr td img {
  35. width: 100%;
  36. max-width: 82px;
  37. }
  38. #boardView .body table thead tr td strong {
  39. font-size: 0.813rem;
  40. color: #56889a;
  41. }
  42. #boardView .body table thead tr td small {
  43. font-size: 0.688rem;
  44. vertical-align: baseline;
  45. margin-left: 10px;
  46. padding-left: 10px;
  47. border-left: 1px solid #2c3946;
  48. }
  49. #boardView .body table thead tr td p {
  50. font-size: 0.75rem;
  51. margin-bottom: 0;
  52. }
  53. #boardView .body table thead tr td ul {
  54. display: inline-block;
  55. list-style: none;
  56. margin: 0;
  57. padding: 0;
  58. }
  59. #boardView .body table thead tr td ul > li {
  60. display: inline-block;
  61. }
  62. #boardView .body table thead tr td ul > li::after {
  63. display: inline-block;
  64. content: "";
  65. width: 1px;
  66. height: 11px;
  67. background: #2c3946;
  68. vertical-align: inherit;
  69. margin: 0;
  70. }
  71. #boardView .body table thead tr td ul > li span {
  72. font-size: 0.75rem;
  73. padding: 0 10px;
  74. }
  75. #boardView .body table thead tr td ul > li span var {
  76. font-style: inherit;
  77. }
  78. #boardView .body table thead tr td ul > li span i {
  79. margin-right: 5px;
  80. }
  81. #boardView .body table thead tr td ul > li:first-child span {
  82. padding-left: 0;
  83. }
  84. #boardView .body table thead tr td ul > li:last-child span {
  85. padding-right: 0;
  86. }
  87. #boardView .body table thead tr td ul > li:last-child::after {
  88. display: none;
  89. width: 0;
  90. }
  91. #boardView .body table thead tr td ol {
  92. min-width: auto;
  93. margin-left: 20px;
  94. border-radius: 0;
  95. border-color: #cfcfcf #999 #666 #999;
  96. border-width: 1px 1px 1px 0;
  97. border-style: solid;
  98. 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);
  99. -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);
  100. -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);
  101. }
  102. #boardView .body table thead tr td ol > li {
  103. line-height: initial;
  104. padding: 0.4rem 1.2rem;
  105. cursor: pointer;
  106. }
  107. #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 {
  108. background: #eaeaea;
  109. color: #000;
  110. }
  111. #boardView .body table thead tr td ol > li i {
  112. margin-right: 3px;
  113. }
  114. #boardView .body table thead tr:last-child {
  115. border-bottom: 1px solid #222c36;
  116. }
  117. #boardView .body table tbody tr td ol {
  118. margin: 0;
  119. padding: 2px 10px;
  120. list-style: none;
  121. }
  122. #boardView .body table tbody tr td ol > li {
  123. margin-bottom: 6px;
  124. }
  125. #boardView .body table tbody tr td ol > li i {
  126. vertical-align: -2px;
  127. }
  128. #boardView .body table tbody tr td ol > li:last-child {
  129. margin-bottom: 0;
  130. }
  131. #boardView .body table tbody tr td blockquote {
  132. min-height: 50px;
  133. padding: 5px;
  134. margin: 0;
  135. }
  136. #boardView .body table tbody tr td blockquote img {
  137. -o-object-fit: cover;
  138. object-fit: cover;
  139. max-width: 100%;
  140. height: auto;
  141. }
  142. #boardView .body table tbody tr td blockquote iframe {
  143. width: 100%;
  144. }
  145. @supports (-webkit-touch-callout: none) {
  146. #boardView .body table tbody tr td blockquote iframe {
  147. width: -webkit-fill-available;
  148. }
  149. }
  150. #boardView .body table tbody tr td blockquote pre[class*=language-],
  151. #boardView .body table tbody tr td blockquote code[class*=language-] {
  152. overflow: auto;
  153. white-space: break-spaces;
  154. word-break: break-word;
  155. }
  156. #boardView .body table tfoot tr td {
  157. text-align: center;
  158. }
  159. #boardView .body table tfoot tr td button {
  160. margin: 0 2px 0 2px;
  161. }
  162. #boardView .body table tfoot tr:last-child td {
  163. text-align: left;
  164. padding: 10px 18px 18px 18px;
  165. }
  166. #boardView .body nav .dropdown-menu {
  167. min-width: auto;
  168. border-radius: 0;
  169. border-color: #cfcfcf #999 #666 #999;
  170. border-width: 1px 1px 1px 0;
  171. border-style: solid;
  172. 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);
  173. -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);
  174. -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);
  175. }
  176. #boardView .body nav .dropdown-menu .dropdown-item {
  177. line-height: initial;
  178. padding: 0.4rem 1.2rem;
  179. cursor: pointer;
  180. }
  181. #boardView .body nav .dropdown-menu .dropdown-item:hover, #boardView .body nav .dropdown-menu .dropdown-item:focus, #boardView .body nav .dropdown-menu .dropdown-item:active {
  182. background: #eaeaea;
  183. color: #000;
  184. }
  185. #boardView .foot {
  186. box-sizing: content-box;
  187. }
  188. #boardView .foot table {
  189. border: 1px solid #222c36;
  190. margin-bottom: 0;
  191. }
  192. #boardView .foot table tr th, #boardView .foot table tr td {
  193. text-align: initial;
  194. vertical-align: middle;
  195. word-break: break-all;
  196. }
  197. #boardView .foot table thead tr th {
  198. background: transparent;
  199. border-bottom: 1px solid #222c36;
  200. }
  201. #boardView .foot table thead tr th h5 {
  202. font-size: 0.938rem;
  203. font-weight: normal;
  204. margin-bottom: 0;
  205. padding: 5px 0;
  206. }
  207. #boardView .foot table tbody tr td {
  208. border-top: 0;
  209. }/*# sourceMappingURL=view.css.map */