write.css 804 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @charset "UTF-8";
  2. /* 게시판 작성 / 게시판 수정 */
  3. #boardWrite,
  4. #boardEdit {
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. padding: calc(var(--bs-gutter-x) * 0.5);
  8. }
  9. #boardWrite > h5,
  10. #boardEdit > h5 {
  11. font-weight: bold;
  12. margin-bottom: 0;
  13. }
  14. #boardWrite .head,
  15. #boardEdit .head {
  16. margin-bottom: 10px;
  17. }
  18. #boardWrite .body,
  19. #boardEdit .body {
  20. margin: 0 -10px;
  21. }
  22. > #boardWrite .body form table:not(:first-child),
  23. > #boardEdit .body form table:not(:first-child) {
  24. border: none;
  25. }
  26. #boardWrite .body form table tr,
  27. #boardEdit .body form table tr {
  28. overflow: hidden;
  29. }
  30. #boardWrite .body form table tr td,
  31. #boardEdit .body form table tr td {
  32. padding: 7px;
  33. text-align: initial;
  34. vertical-align: middle;
  35. }
  36. #boardWrite .foot,
  37. #boardEdit .foot {
  38. margin-top: 10px;
  39. }