style.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #resetPasswordForm {
  2. width: 100%;
  3. fieldset {
  4. position: relative;
  5. border: 1px solid #cecece;
  6. border-radius: 3px;
  7. padding: 20px 26px;
  8. align-content: center;
  9. max-width: 400px;
  10. margin: 0 auto;
  11. > legend {
  12. position: absolute;
  13. top: -0.625rem;
  14. left: 1.25rem;
  15. padding: 0 5px;
  16. background: white;
  17. font-size: 1rem;
  18. font-weight: bold;
  19. }
  20. // 회원가입 창
  21. form {
  22. label {
  23. cursor: pointer;
  24. margin-bottom: 7px;
  25. }
  26. input[type="email"],
  27. input[type="password"] {
  28. margin-bottom: 15px;
  29. }
  30. input[type="password"] {
  31. letter-spacing: 1px;
  32. &:last-child {
  33. margin-bottom: 0;
  34. }
  35. }
  36. label {
  37. small {
  38. padding-right: 5px;
  39. }
  40. button {
  41. color: #0060a9;
  42. &:hover {
  43. text-decoration: underline;
  44. color: #c7511f;
  45. }
  46. }
  47. }
  48. }
  49. hr {
  50. margin: 20px 0;
  51. }
  52. }
  53. }