post.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /* 작성 게시글 */
  2. #accountPost {
  3. box-sizing: border-box;
  4. table {
  5. margin-bottom: 0;
  6. caption {
  7. caption-side: top;
  8. color: #bbbbbb;
  9. }
  10. tr {
  11. th, td{
  12. text-align: center;
  13. }
  14. }
  15. thead {
  16. tr {
  17. th {
  18. background: #133a46;
  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. p {
  34. margin-bottom: 5px;
  35. label {
  36. font-size: 0.8rem;
  37. margin-right: 3px;
  38. }
  39. del, a {
  40. font-size: 0.8rem;
  41. font-weight: normal;
  42. text-decoration: none;
  43. }
  44. var {
  45. color: #aa0000;
  46. font-style: initial;
  47. font-size: 0.813rem;
  48. vertical-align: bottom;
  49. letter-spacing: -1px;
  50. }
  51. i {
  52. color: #cbd5e0;
  53. margin-left: 5px;
  54. vertical-align: -2px;
  55. }
  56. span {
  57. font-size: 0.625rem;
  58. vertical-align: text-top;
  59. margin-left: 5px;
  60. }
  61. }
  62. ul {
  63. margin: 0;
  64. padding: 0;
  65. li {
  66. display: inline-block;
  67. font-size: 0.75rem;
  68. &:after {
  69. content: "·";
  70. padding: 0 3px 0 7px;
  71. }
  72. &:last-child:after {
  73. content: "";
  74. padding: 0;
  75. }
  76. }
  77. }
  78. .thumbnail {
  79. display: block;
  80. position: relative;
  81. width: 100%;
  82. height: 100%;
  83. overflow: hidden;
  84. min-height: 50px;
  85. > img {
  86. position: absolute;
  87. width: 100%;
  88. top: 50%;
  89. left: 50%;
  90. transform: translate(-50%, -50%);
  91. }
  92. }
  93. &:first-child {
  94. text-align: center;
  95. }
  96. &:last-child {
  97. text-align: left;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. }