passwords.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. background: #000;
  18. }
  19. #passwordEmail a,
  20. #passwordReset a {
  21. text-decoration: none;
  22. }
  23. #passwordEmail header,
  24. #passwordReset header {
  25. font-family: "Open-Sans-Extrabold";
  26. font-size: 37px;
  27. font-weight: bolder;
  28. margin-bottom: 0.7rem;
  29. }
  30. #passwordEmail header a,
  31. #passwordReset header a {
  32. color: #d3d629;
  33. }
  34. #passwordEmail header a:hover, #passwordEmail header a:focus,
  35. #passwordReset header a:hover,
  36. #passwordReset header a:focus {
  37. color: #a8aa2f;
  38. }
  39. #passwordEmail main,
  40. #passwordReset main {
  41. max-width: 400px;
  42. border-radius: 0;
  43. padding: 20px;
  44. border: 1px solid #2f2f2f;
  45. background: #191919;
  46. }
  47. #passwordEmail main h5,
  48. #passwordReset main h5 {
  49. font-weight: bold;
  50. margin-bottom: 0.9rem;
  51. }
  52. #passwordEmail main div:last-child a,
  53. #passwordReset main div:last-child a {
  54. color: #0066c0;
  55. }
  56. #passwordEmail main div:last-child a:hover, #passwordEmail main div:last-child a:focus,
  57. #passwordReset main div:last-child a:hover,
  58. #passwordReset main div:last-child a:focus {
  59. color: #00558c;
  60. text-decoration: underline;
  61. }
  62. #passwordEmail main hr,
  63. #passwordReset main hr {
  64. margin: 0.5rem 0;
  65. border-color: #888;
  66. }
  67. #passwordEmail main footer,
  68. #passwordReset main footer {
  69. text-align: center;
  70. font-size: 11px;
  71. padding-top: 12px;
  72. color: #6c6c6c;
  73. }