post.css 2.0 KB

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