index.scss 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. // 게시판 목록, 사진/동영상, 공지사항, 검색
  2. .mce-label.mce-autoscroll {overflow: hidden !important;}
  3. #board {
  4. // 제목
  5. .board-name {
  6. font-weight: normal;
  7. margin-bottom: 0;
  8. }
  9. /* 일반 게시판 목록 */
  10. #boardList {
  11. box-sizing: border-box;
  12. .head {
  13. margin-bottom: 10px;
  14. }
  15. .body {
  16. table {
  17. margin-left: auto;
  18. margin-right: auto;
  19. border: 1px solid #333;
  20. caption {
  21. caption-side: top;
  22. color: #bbbbbb;
  23. span {
  24. font-size: 15px;
  25. }
  26. select {
  27. width: auto;
  28. display: inline-block;
  29. &:last-child {
  30. margin-left: 5px;
  31. }
  32. }
  33. }
  34. thead {
  35. tr {
  36. border: 1px solid #333;
  37. th {
  38. text-align: center;
  39. border-bottom: none;
  40. background-color: #133a46;
  41. }
  42. }
  43. }
  44. tbody {
  45. tr {
  46. &:hover,
  47. &:focus {
  48. td {
  49. background-color: #1a1e21;
  50. }
  51. }
  52. th, td {
  53. text-align: center;
  54. vertical-align: middle;
  55. }
  56. td {
  57. font-size: 13px;
  58. label {
  59. margin-right: 5px;
  60. a {
  61. color: #cbd5e0;
  62. }
  63. }
  64. del, a {
  65. font-size: 14px;
  66. font-weight: normal;
  67. color: #b3b3b3;
  68. }
  69. var {
  70. color: #aa0000;
  71. font-style: normal;
  72. margin-left: 3px;
  73. letter-spacing: -1px;
  74. vertical-align: middle;
  75. }
  76. i {
  77. color: #cbd5e0;
  78. margin-left: 3px;
  79. vertical-align: -1px;
  80. }
  81. span {
  82. font-size: 10px;
  83. margin-left: 3px;
  84. vertical-align: middle;
  85. }
  86. }
  87. }
  88. }
  89. tfoot {
  90. tr td {
  91. border-bottom: none;
  92. nav ul {
  93. margin-bottom: 0;
  94. }
  95. }
  96. }
  97. }
  98. // 사진/동영상
  99. figure {
  100. box-sizing: border-box;
  101. margin: 0;
  102. text-align: center;
  103. > a {
  104. position: relative;
  105. display: block;
  106. min-width: 140px;
  107. min-height: 140px;
  108. max-height: 160px;
  109. margin: 0;
  110. img {
  111. position: absolute;
  112. width: 100%;
  113. top: 0;
  114. left: 0;
  115. &:hover {
  116. filter: drop-shadow(2px 2px 4px #969696);
  117. }
  118. }
  119. &:hover,
  120. &:focus {
  121. text-decoration: underline;
  122. }
  123. }
  124. figcaption {
  125. margin: 5px 0;
  126. > a {
  127. display: initial;
  128. &:focus,
  129. &:hover {
  130. text-decoration: underline;
  131. }
  132. }
  133. label {
  134. margin-right: 5px;
  135. a {
  136. color: #cbd5e0;
  137. }
  138. }
  139. del, a {
  140. font-size: 14px;
  141. font-weight: normal;
  142. color: #b3b3b3;
  143. }
  144. var {
  145. color: #aa0000;
  146. font-style: normal;
  147. margin-left: 3px;
  148. letter-spacing: -1px;
  149. vertical-align: middle;
  150. }
  151. i {
  152. color: #cbd5e0;
  153. margin-left: 3px;
  154. vertical-align: -1px;
  155. }
  156. span {
  157. font-size: 10px;
  158. margin-left: 3px;
  159. vertical-align: middle;
  160. }
  161. }
  162. strong {
  163. font-weight: 500;
  164. margin-bottom: 3px;
  165. display: block;
  166. }
  167. ul {
  168. list-style: none;
  169. padding-left: 0;
  170. margin: 0;
  171. li {
  172. display: inline-block;
  173. font-size: 13px;
  174. &:first-child::before {display: none;}
  175. &::before {
  176. content: '';
  177. display: inline-block;
  178. width: 2px;
  179. height: 2px;
  180. margin: 0 5px 4px 2px;
  181. border-radius: 2px;
  182. background-color: #616670;
  183. }
  184. }
  185. }
  186. }
  187. }
  188. }
  189. .foot {
  190. margin-top: 10px;
  191. }
  192. /* 게시판 검색 */
  193. .search {
  194. form {
  195. select {margin-right: 5px;width: auto;display: inline;}
  196. input {margin-right: 5px;width: auto;display: inline;}
  197. button {width: auto;vertical-align: initial;}
  198. }
  199. }
  200. }