comment.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* 작성 댓글 */
  2. #accountComment {
  3. box-sizing: border-box;
  4. table {
  5. caption {
  6. caption-side: top;
  7. color: #bbbbbb;
  8. }
  9. tr {
  10. th, td{
  11. text-align: center;
  12. }
  13. }
  14. thead {
  15. tr {
  16. th {
  17. background: #133a46;
  18. }
  19. }
  20. }
  21. tbody {
  22. tr {
  23. &:hover,
  24. &:focus {
  25. background-color: #1a1e21;
  26. }
  27. th, td {
  28. text-align: center;
  29. vertical-align: middle;
  30. }
  31. td {
  32. p {
  33. font-size: 13px;
  34. a {
  35. color: #b3b3b3;
  36. }
  37. var {
  38. color: #aa0000;
  39. font-style: normal;
  40. margin-left: 3px;
  41. letter-spacing: -1px;
  42. vertical-align: middle;
  43. }
  44. i {
  45. color: #cbd5e0;
  46. margin-left: 3px;
  47. vertical-align: -1px;
  48. }
  49. &:last-child {
  50. margin-bottom: 0;
  51. }
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }