latest.scss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* 최근 게시글 */
  2. #latest {
  3. box-sizing: border-box;
  4. table {
  5. > &:not(:first-child) {
  6. border-top: none;
  7. }
  8. margin-left: auto;
  9. margin-right: auto;
  10. border: 1px solid #222c36;
  11. tbody {
  12. tr {
  13. td {
  14. vertical-align: middle;
  15. // 일반 게시글
  16. p {
  17. margin-bottom: 5px;
  18. label {
  19. margin-right: 5px;
  20. a {
  21. color: #cbd5e0;
  22. }
  23. }
  24. del, a {
  25. font-size: 0.875rem;
  26. font-weight: normal;
  27. }
  28. var {
  29. color: #aa0000;
  30. font-style: normal;
  31. margin-left: 3px;
  32. letter-spacing: -1px;
  33. vertical-align: middle;
  34. }
  35. i {
  36. color: #cbd5e0;
  37. margin-left: 3px;
  38. vertical-align: -1px;
  39. }
  40. span {
  41. font-size: 0.625rem;
  42. margin-left: 3px;
  43. vertical-align: middle;
  44. }
  45. }
  46. ul {
  47. margin: 0;
  48. padding: 0;
  49. li {
  50. display: inline-block;
  51. font-size: 0.75rem;
  52. &:after {
  53. content: "·";
  54. padding: 0 3px 0 7px;
  55. }
  56. &:last-child:after {
  57. content: "";
  58. padding: 0;
  59. }
  60. }
  61. }
  62. // 썸네일
  63. .thumbnail {
  64. display: block;
  65. position: relative;
  66. width: 100%;
  67. height: 100%;
  68. overflow: hidden;
  69. min-height: 50px;
  70. > img {
  71. position: absolute;
  72. width: 100%;
  73. top: 50%;
  74. left: 50%;
  75. transform: translate(-50%, -50%);
  76. }
  77. }
  78. // 사진/동영상
  79. > section {
  80. display: flex;
  81. flex-wrap: wrap;
  82. justify-content: space-around;
  83. // 사진 영역
  84. figure {
  85. box-sizing: border-box;
  86. text-align: center;
  87. flex-basis: auto;
  88. max-width: 50%;
  89. padding: 5px;
  90. > a {
  91. display: inline-block;
  92. img {
  93. width: 100%;
  94. max-width: 210px;
  95. max-height: 215px;
  96. &:focus,
  97. &:hover {
  98. filter: drop-shadow(2px 2px 4px #969696);
  99. }
  100. }
  101. }
  102. figcaption {
  103. margin: 5px 0;
  104. a {
  105. display: initial;
  106. }
  107. }
  108. // 작성자
  109. strong {
  110. display: block;
  111. font-size: 0.813rem;
  112. margin-bottom: 3px;
  113. }
  114. // 작성일자
  115. small {
  116. font-size: 0.688rem;
  117. }
  118. }
  119. }
  120. }
  121. }
  122. }
  123. }
  124. }