post.css 2.0 KB

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