passwords.css 1.2 KB

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