write.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @charset "UTF-8";
  2. /* 게시판 작성 / 게시판 수정 */
  3. #boardWrite,
  4. #boardEdit {
  5. box-sizing: border-box;
  6. padding: calc(var(--bs-gutter-x) * 0.5);
  7. }
  8. #boardWrite > h5,
  9. #boardEdit > h5 {
  10. font-weight: bold;
  11. margin-bottom: 0;
  12. }
  13. #boardWrite .head,
  14. #boardEdit .head {
  15. margin-bottom: 10px;
  16. }
  17. #boardWrite .body,
  18. #boardEdit .body {
  19. margin: 0 -10px;
  20. }
  21. > #boardWrite .body form table:not(:first-child),
  22. > #boardEdit .body form table:not(:first-child) {
  23. border: none;
  24. }
  25. #boardWrite .body form table tr,
  26. #boardEdit .body form table tr {
  27. overflow: hidden;
  28. }
  29. #boardWrite .body form table tr th, #boardWrite .body form table tr td,
  30. #boardEdit .body form table tr th,
  31. #boardEdit .body form table tr td {
  32. text-align: initial;
  33. vertical-align: middle;
  34. }
  35. #boardWrite .body form table tr th,
  36. #boardEdit .body form table tr th {
  37. font-weight: normal;
  38. }
  39. #boardWrite .body form table tr th label,
  40. #boardEdit .body form table tr th label {
  41. margin-bottom: 0;
  42. }
  43. #boardWrite .body form table tr td,
  44. #boardEdit .body form table tr td {
  45. padding: 7px;
  46. }
  47. #boardWrite .foot,
  48. #boardEdit .foot {
  49. margin-top: 10px;
  50. }
  51. #boardWrite .captcha,
  52. #boardEdit .captcha {
  53. max-width: 280px;
  54. }/*# sourceMappingURL=write.css.map */