passwords.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 {
  18. color: #333;
  19. &:hover,
  20. &:focus {
  21. color: #18306c;
  22. }
  23. }
  24. }
  25. main {
  26. border-radius: 4px;
  27. padding: 20px;
  28. border: 1px solid #b5b5b5;
  29. background: #fff;
  30. h5 {
  31. font-weight: bold;
  32. margin-bottom: 0.9rem;
  33. }
  34. div:last-child {
  35. a {
  36. &:hover,
  37. &:focus {
  38. text-decoration: underline;
  39. }
  40. }
  41. }
  42. hr {margin: 0.5rem 0;border-color: #888;}
  43. footer {text-align: center;font-size: 11px;padding-top: 12px;color: #6c6c6c;}
  44. }
  45. }