passwords.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // 비밀번호 재설정
  2. #passwordEmail,
  3. #passwordReset {
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: center;
  8. height: 100vh;
  9. a {
  10. text-decoration: none;
  11. }
  12. header {
  13. font-family: 'Open-Sans-Extrabold';
  14. font-size: 37px;
  15. font-weight: bolder;
  16. margin-bottom: 0.7rem;
  17. a {color: #333;}
  18. }
  19. main {
  20. border: 1px solid #dadada;
  21. border-radius: 4px;
  22. padding: 20px;
  23. background: #fff;
  24. h5 {
  25. font-weight: bold;
  26. margin-bottom: 0.9rem;
  27. }
  28. div:last-child {
  29. a {
  30. color: #0066c0;
  31. &:hover,
  32. &:focus {
  33. color: #c45500;
  34. text-decoration: underline;
  35. }
  36. }
  37. }
  38. hr {
  39. margin: 0.5rem 0;
  40. background-color: #dadada;
  41. }
  42. footer {
  43. text-align: center;
  44. font-size: 11px;
  45. padding-top: 12px;
  46. }
  47. }
  48. }