write.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 th, #boardWrite .body form table tr td,
  31. #boardEdit .body form table tr th,
  32. #boardEdit .body form table tr td {
  33. text-align: initial;
  34. vertical-align: middle;
  35. }
  36. #boardWrite .body form table tr th,
  37. #boardEdit .body form table tr th {
  38. font-weight: normal;
  39. }
  40. #boardWrite .body form table tr th label,
  41. #boardEdit .body form table tr th label {
  42. margin-bottom: 0;
  43. }
  44. #boardWrite .body form table tr td,
  45. #boardEdit .body form table tr td {
  46. padding: 7px;
  47. }
  48. #boardWrite .foot,
  49. #boardEdit .foot {
  50. margin-top: 10px;
  51. }
  52. #boardWrite .captcha,
  53. #boardEdit .captcha {
  54. max-width: 280px;
  55. }