post.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* 작성 게시글 */
  2. #accountPost {
  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. font-size: 13px;
  33. label {
  34. margin-right: 5px;
  35. a {
  36. color: #cbd5e0;
  37. }
  38. }
  39. del, a {
  40. font-size: 14px;
  41. font-weight: normal;
  42. color: #b3b3b3;
  43. }
  44. var {
  45. color: #aa0000;
  46. font-style: normal;
  47. margin-left: 3px;
  48. letter-spacing: -1px;
  49. vertical-align: middle;
  50. }
  51. i {
  52. color: #cbd5e0;
  53. margin-left: 3px;
  54. vertical-align: -1px;
  55. }
  56. span {
  57. font-size: 10px;
  58. margin-left: 3px;
  59. vertical-align: middle;
  60. }
  61. }
  62. }
  63. }
  64. }
  65. }