passwords.scss 1.2 KB

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