comment.scss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* 작성 댓글 */
  2. #accountComment {
  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. td {
  25. vertical-align: middle;
  26. p {
  27. margin-bottom: 5px;
  28. a {
  29. font-size: 0.8rem;
  30. font-weight: normal;
  31. text-decoration: none;
  32. }
  33. var {
  34. color: #aa0000;
  35. font-style: initial;
  36. font-size: 0.813rem;
  37. vertical-align: bottom;
  38. letter-spacing: -1px;
  39. }
  40. i {
  41. color: #cbd5e0;
  42. margin-left: 5px;
  43. vertical-align: -2px;
  44. }
  45. &:last-child {
  46. margin-bottom: 0;
  47. }
  48. }
  49. ul {
  50. margin: 0;
  51. padding: 0;
  52. li {
  53. display: inline-block;
  54. font-size: 0.75rem;
  55. &:after {
  56. content: "·";
  57. padding: 0 3px 0 7px;
  58. }
  59. &:last-child:after {
  60. content: "";
  61. padding: 0;
  62. }
  63. }
  64. }
  65. &:first-child {
  66. text-align: center;
  67. }
  68. &:last-child {
  69. text-align: left;
  70. }
  71. }
  72. }
  73. }
  74. }
  75. }