latest.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* 최근 게시글 */
  2. #latest {
  3. box-sizing: border-box;
  4. margin-top: 20px;
  5. table {
  6. > &:not(:first-child) {
  7. border-top: none;
  8. }
  9. margin-left: auto;
  10. margin-right: auto;
  11. border: 1px solid #333;
  12. thead {
  13. tr {
  14. background-color: #133a46;
  15. border: 1px solid #333;
  16. th {
  17. text-align: center;
  18. border-bottom: none;
  19. }
  20. }
  21. }
  22. tbody {
  23. tr {
  24. &:hover,
  25. &:focus {
  26. background-color: #1a1e21;
  27. }
  28. th, td {
  29. text-align: center;
  30. vertical-align: middle;
  31. }
  32. td {
  33. font-size: 13px;
  34. label {
  35. a {
  36. color: #cbd5e0;
  37. }
  38. }
  39. del, a {
  40. font-size: 14px;
  41. font-weight: normal;
  42. margin-right: 5px;
  43. color: #b3b3b3;
  44. }
  45. var {
  46. color: #aa0000;
  47. font-style: initial;
  48. letter-spacing: -1px;
  49. margin-right: 5px;
  50. }
  51. i {
  52. color: #cbd5e0;
  53. margin-right: 3px;
  54. vertical-align: -1px;
  55. }
  56. span {
  57. font-size: 10px;
  58. vertical-align: text-bottom;
  59. }
  60. // 사진/동영상
  61. > section {
  62. display: flex;
  63. flex-wrap: wrap;
  64. figure {
  65. box-sizing: border-box;
  66. min-width: 250px;
  67. padding: 20px 10px 20px 10px;
  68. margin: 0;
  69. text-align: center;
  70. a {
  71. display: inline-block;
  72. img {
  73. max-width: 210px;
  74. max-height: 215px;
  75. width: 100%;
  76. &:focus,
  77. &:hover {
  78. filter: drop-shadow(2px 2px 4px #969696);
  79. }
  80. }
  81. }
  82. figcaption {
  83. margin: 5px 0;
  84. h5 a {
  85. display: initial;
  86. }
  87. }
  88. strong {
  89. font-weight: 500;
  90. margin-bottom: 3px;
  91. display: block;
  92. }
  93. ul {
  94. list-style: none;
  95. padding-left: 0;
  96. margin: 0;
  97. li {
  98. display: inline-block;
  99. font-size: 13px;
  100. &:first-child::before {display: none;}
  101. &::before {
  102. content: '';
  103. display: inline-block;
  104. width: 2px;
  105. height: 2px;
  106. margin: 0 5px 4px 2px;
  107. border-radius: 2px;
  108. background-color: #616670;
  109. }
  110. }
  111. }
  112. }
  113. }
  114. }
  115. }
  116. }
  117. tfoot {
  118. tr td {
  119. border-bottom: none;
  120. nav ul {
  121. margin-bottom: 0;
  122. }
  123. }
  124. }
  125. }
  126. }