passwords.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #passwordEmail,
  2. #passwordReset {
  3. display: -webkit-box;
  4. display: -ms-flexbox;
  5. display: flex;
  6. -webkit-box-orient: vertical;
  7. -webkit-box-direction: normal;
  8. -ms-flex-direction: column;
  9. flex-direction: column;
  10. -webkit-box-align: center;
  11. -ms-flex-align: center;
  12. align-items: center;
  13. -webkit-box-pack: center;
  14. -ms-flex-pack: center;
  15. justify-content: center;
  16. height: 100vh;
  17. }
  18. #passwordEmail a,
  19. #passwordReset a {
  20. text-decoration: none;
  21. }
  22. #passwordEmail header,
  23. #passwordReset header {
  24. font-family: "Open-Sans-Extrabold";
  25. font-size: 37px;
  26. font-weight: bolder;
  27. margin-bottom: 0.7rem;
  28. }
  29. #passwordEmail header a,
  30. #passwordReset header a {
  31. color: #333;
  32. }
  33. #passwordEmail header a:hover, #passwordEmail header a:focus,
  34. #passwordReset header a:hover,
  35. #passwordReset header a:focus {
  36. color: #18306c;
  37. }
  38. #passwordEmail main,
  39. #passwordReset main {
  40. border-radius: 4px;
  41. padding: 20px;
  42. border: 1px solid #b5b5b5;
  43. background: #fff;
  44. }
  45. #passwordEmail main h5,
  46. #passwordReset main h5 {
  47. font-weight: bold;
  48. margin-bottom: 0.9rem;
  49. }
  50. #passwordEmail main div:last-child a:hover, #passwordEmail main div:last-child a:focus,
  51. #passwordReset main div:last-child a:hover,
  52. #passwordReset main div:last-child a:focus {
  53. text-decoration: underline;
  54. }
  55. #passwordEmail main hr,
  56. #passwordReset main hr {
  57. margin: 0.5rem 0;
  58. border-color: #888;
  59. }
  60. #passwordEmail main footer,
  61. #passwordReset main footer {
  62. text-align: center;
  63. font-size: 11px;
  64. padding-top: 12px;
  65. color: #6c6c6c;
  66. }