modify.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // 회원 정보 수정
  2. #accountModify {
  3. position: relative;
  4. > dl {
  5. margin-bottom: 1.5rem;
  6. dt {
  7. font-size: 17px;
  8. margin-bottom: 10px;
  9. }
  10. dd {
  11. font-size: 13px;
  12. }
  13. }
  14. form {
  15. margin-bottom: 0;
  16. table {
  17. border: none;
  18. tbody {
  19. tr {
  20. th {
  21. color: #b3b3b3;
  22. hr {
  23. color: #ccc;
  24. margin: 0.6rem 0;
  25. }
  26. }
  27. td {
  28. text-align: left;
  29. @media (max-width: 576px) {
  30. #btnConfirmEmail,
  31. #btnCancelEmail {
  32. margin-bottom: 5px;
  33. }
  34. }
  35. input[type="file"] {
  36. width: inherit;
  37. }
  38. hr {
  39. margin: 0.3rem 0;
  40. }
  41. }
  42. }
  43. }
  44. }
  45. }
  46. }