passwords.scss 1.3 KB

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