comment.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @charset "UTF-8";
  2. /* 작성 댓글 */
  3. #accountComment {
  4. -webkit-box-sizing: border-box;
  5. box-sizing: border-box;
  6. }
  7. #accountComment table {
  8. margin-bottom: 0;
  9. }
  10. #accountComment table caption {
  11. caption-side: top;
  12. color: #bbbbbb;
  13. }
  14. #accountComment table tr th, #accountComment table tr td {
  15. text-align: center;
  16. }
  17. #accountComment table thead tr th {
  18. background: #133a46;
  19. }
  20. #accountComment table tbody tr td {
  21. vertical-align: middle;
  22. }
  23. #accountComment table tbody tr td p {
  24. margin-bottom: 5px;
  25. }
  26. #accountComment table tbody tr td p a {
  27. font-size: 0.8rem;
  28. font-weight: normal;
  29. text-decoration: none;
  30. }
  31. #accountComment table tbody tr td p var {
  32. color: #aa0000;
  33. font-style: initial;
  34. font-size: 0.813rem;
  35. vertical-align: bottom;
  36. letter-spacing: -1px;
  37. }
  38. #accountComment table tbody tr td p i {
  39. color: #cbd5e0;
  40. margin-left: 5px;
  41. vertical-align: -2px;
  42. }
  43. #accountComment table tbody tr td p:last-child {
  44. margin-bottom: 0;
  45. }
  46. #accountComment table tbody tr td ul {
  47. margin: 0;
  48. padding: 0;
  49. }
  50. #accountComment table tbody tr td ul li {
  51. display: inline-block;
  52. font-size: 0.75rem;
  53. }
  54. #accountComment table tbody tr td ul li:after {
  55. content: "·";
  56. padding: 0 3px 0 7px;
  57. }
  58. #accountComment table tbody tr td ul li:last-child:after {
  59. content: "";
  60. padding: 0;
  61. }
  62. #accountComment table tbody tr td:first-child {
  63. text-align: center;
  64. }
  65. #accountComment table tbody tr td:last-child {
  66. text-align: left;
  67. }