write.css 799 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 td,
  30. #boardEdit .body form table tr td {
  31. padding: 7px;
  32. text-align: initial;
  33. vertical-align: middle;
  34. }
  35. #boardWrite .foot,
  36. #boardEdit .foot {
  37. margin-top: 10px;
  38. }/*# sourceMappingURL=write.css.map */