latest.css 3.6 KB

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