passwords.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. // 비밀번호 재설정
  2. // 비밀번호 재설정 입력창
  3. // 비밀번호 확인 입력창
  4. #passwordEmail,
  5. #passwordReset,
  6. #passwordConfirm {
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. justify-content: center;
  11. height: 100vh;
  12. a {
  13. text-decoration: none;
  14. }
  15. header {
  16. font-family: 'Open-Sans-Extrabold';
  17. font-size: 37px;
  18. font-weight: bolder;
  19. margin: 1.6rem 0;
  20. a {
  21. color: #d3d629;
  22. &:hover,
  23. &:focus {
  24. color: #a8aa2f;
  25. }
  26. }
  27. }
  28. main {
  29. max-width: 400px;
  30. padding: 10px;
  31. h5 {
  32. font-weight: bold;
  33. margin-bottom: 0.9rem;
  34. }
  35. form {
  36. div:last-child {
  37. a {
  38. color: #0066c0;
  39. &:hover,
  40. &:focus {
  41. color: #00558c;
  42. text-decoration: underline;
  43. }
  44. }
  45. }
  46. }
  47. hr {
  48. margin: 0.5rem 0 0.9rem 0;
  49. border-color: #888;
  50. }
  51. footer {
  52. text-align: center;
  53. font-size: 11px;
  54. color: #6c6c6c;
  55. }
  56. }
  57. }