passwords.css 1.7 KB

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