index.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. @charset "UTF-8";
  2. .mce-label.mce-autoscroll {
  3. overflow: hidden !important;
  4. }
  5. #board {
  6. padding: calc(var(--bs-gutter-x) * 0.5);
  7. /* 게시판 목록 */
  8. }
  9. #board .board-name {
  10. font-weight: bold;
  11. margin-bottom: 0;
  12. }
  13. #board #boardList {
  14. -webkit-box-sizing: border-box;
  15. box-sizing: border-box;
  16. }
  17. #board #boardList .head {
  18. margin-bottom: 10px;
  19. }
  20. #board #boardList .body table {
  21. margin-left: auto;
  22. margin-right: auto;
  23. border: 1px solid #222c36;
  24. }
  25. #board #boardList .body table caption {
  26. caption-side: top;
  27. }
  28. #board #boardList .body table caption span {
  29. font-size: 15px;
  30. }
  31. #board #boardList .body table caption select {
  32. width: inherit;
  33. }
  34. #board #boardList .body table tbody tr td {
  35. vertical-align: middle;
  36. }
  37. #board #boardList .body table tbody tr td p {
  38. font-size: 0.813rem;
  39. margin-bottom: 5px;
  40. }
  41. #board #boardList .body table tbody tr td p label {
  42. margin-right: 5px;
  43. }
  44. #board #boardList .body table tbody tr td p label a {
  45. color: #cbd5e0;
  46. }
  47. #board #boardList .body table tbody tr td p del, #board #boardList .body table tbody tr td p a {
  48. font-size: 0.875rem;
  49. font-weight: normal;
  50. }
  51. #board #boardList .body table tbody tr td p var {
  52. color: #aa0000;
  53. font-style: normal;
  54. margin-left: 3px;
  55. letter-spacing: -1px;
  56. vertical-align: middle;
  57. }
  58. #board #boardList .body table tbody tr td p i {
  59. color: #cbd5e0;
  60. margin-left: 3px;
  61. vertical-align: -1px;
  62. }
  63. #board #boardList .body table tbody tr td p span {
  64. font-size: 0.625rem;
  65. margin-left: 3px;
  66. vertical-align: middle;
  67. }
  68. #board #boardList .body table tbody tr td ul {
  69. margin: 0;
  70. padding: 0;
  71. }
  72. #board #boardList .body table tbody tr td ul li {
  73. display: inline-block;
  74. font-size: 0.75rem;
  75. }
  76. #board #boardList .body table tbody tr td ul li:after {
  77. content: "·";
  78. padding: 0 3px 0 7px;
  79. }
  80. #board #boardList .body table tbody tr td ul li:last-child:after {
  81. content: "";
  82. padding: 0;
  83. }
  84. #board #boardList .body table tbody tr td .thumbnail {
  85. display: block;
  86. position: relative;
  87. width: 100%;
  88. height: 100%;
  89. overflow: hidden;
  90. min-height: 50px;
  91. }
  92. #board #boardList .body table tbody tr td .thumbnail > img {
  93. position: absolute;
  94. width: 100%;
  95. top: 50%;
  96. left: 50%;
  97. -webkit-transform: translate(-50%, -50%);
  98. transform: translate(-50%, -50%);
  99. }
  100. #board #boardList .body > section {
  101. display: -webkit-box;
  102. display: -ms-flexbox;
  103. display: flex;
  104. -ms-flex-wrap: wrap;
  105. flex-wrap: wrap;
  106. -ms-flex-pack: distribute;
  107. justify-content: space-around;
  108. }
  109. #board #boardList .body > section figure {
  110. -webkit-box-sizing: border-box;
  111. box-sizing: border-box;
  112. text-align: center;
  113. -ms-flex-preferred-size: auto;
  114. flex-basis: auto;
  115. }
  116. #board #boardList .body > section figure > a {
  117. position: relative;
  118. display: block;
  119. }
  120. #board #boardList .body > section figure > a img {
  121. position: absolute;
  122. width: 100%;
  123. top: 0;
  124. left: 0;
  125. }
  126. #board #boardList .body > section figure > a img:hover {
  127. -webkit-filter: drop-shadow(2px 2px 4px #969696);
  128. filter: drop-shadow(2px 2px 4px #969696);
  129. }
  130. #board #boardList .body > section figure figcaption {
  131. margin: 5px 0;
  132. }
  133. #board #boardList .body > section figure figcaption p {
  134. margin-bottom: 0.125rem;
  135. }
  136. #board #boardList .body > section figure figcaption > a {
  137. display: initial;
  138. }
  139. #board #boardList .body > section figure figcaption label {
  140. margin-right: 5px;
  141. }
  142. #board #boardList .body > section figure figcaption label a {
  143. color: #cbd5e0;
  144. }
  145. #board #boardList .body > section figure figcaption del, #board #boardList .body > section figure figcaption a {
  146. font-size: 14px;
  147. font-weight: normal;
  148. color: #b3b3b3;
  149. }
  150. #board #boardList .body > section figure figcaption var {
  151. color: #aa0000;
  152. font-style: normal;
  153. margin-left: 3px;
  154. letter-spacing: -1px;
  155. vertical-align: middle;
  156. }
  157. #board #boardList .body > section figure figcaption i {
  158. color: #cbd5e0;
  159. margin-left: 3px;
  160. vertical-align: -1px;
  161. }
  162. #board #boardList .body > section figure figcaption span {
  163. font-size: 10px;
  164. margin-left: 3px;
  165. vertical-align: middle;
  166. }
  167. #board #boardList .body > section figure strong {
  168. display: block;
  169. font-size: 0.813rem;
  170. margin-bottom: 3px;
  171. }
  172. #board #boardList .body > section figure small {
  173. font-size: 0.688rem;
  174. }
  175. #board #boardList .body > section figure ul {
  176. list-style: none;
  177. padding-left: 0;
  178. margin: 0;
  179. }
  180. #board #boardList .body > section figure ul li {
  181. display: inline-block;
  182. font-size: 13px;
  183. }
  184. #board #boardList .body > section figure ul li:first-child::before {
  185. display: none;
  186. }
  187. #board #boardList .body > section figure ul li::before {
  188. content: "";
  189. display: inline-block;
  190. width: 2px;
  191. height: 2px;
  192. margin: 0 5px 4px 2px;
  193. border-radius: 2px;
  194. background-color: #616670;
  195. }
  196. #board #boardList .foot {
  197. margin-top: 10px;
  198. }