latest.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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 table tbody tr td > 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 table tbody tr td > 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. max-width: 50%;
  96. padding: 5px;
  97. }
  98. #latest table tbody tr td > section figure > a {
  99. display: inline-block;
  100. }
  101. #latest table tbody tr td > section figure > a img {
  102. width: 100%;
  103. max-width: 210px;
  104. max-height: 215px;
  105. }
  106. #latest table tbody tr td > section figure > a img:focus, #latest table tbody tr td > 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 table tbody tr td > section figure figcaption {
  111. margin: 5px 0;
  112. }
  113. #latest table tbody tr td > section figure figcaption a {
  114. display: initial;
  115. }
  116. #latest table tbody tr td > section figure strong {
  117. display: block;
  118. font-size: 0.813rem;
  119. margin-bottom: 3px;
  120. }
  121. #latest table tbody tr td > section figure small {
  122. font-size: 0.688rem;
  123. }