passwords.scss 861 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // 비밀번호 변경, 정기적 변경
  2. #accountPassword,
  3. #accountPasswordCampaign {
  4. position: relative;
  5. > dl {
  6. margin-bottom: 1.5rem;
  7. dt {
  8. font-size: 15px;
  9. margin-bottom: 10px;
  10. }
  11. dd {
  12. font-size: 13px;
  13. }
  14. }
  15. form {
  16. min-width: 350px;
  17. max-width: 450px;
  18. margin: 0 auto;
  19. table {
  20. border: none;
  21. tbody {
  22. tr {
  23. th {
  24. hr {
  25. margin: 0.6rem 0;
  26. }
  27. }
  28. td {
  29. text-align: left;
  30. hr {
  31. margin: 0.3rem 0;
  32. }
  33. }
  34. }
  35. }
  36. }
  37. }
  38. }