register.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #registerForm {
  2. background: #0f0f0f;
  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. #registerForm a {
  19. text-decoration: none;
  20. }
  21. #registerForm header {
  22. font-family: "Open-Sans-Extrabold";
  23. font-size: 37px;
  24. font-weight: bolder;
  25. margin: 1.6rem 0;
  26. }
  27. #registerForm header a {
  28. color: #d3d629;
  29. }
  30. #registerForm header a:hover, #registerForm header a:focus {
  31. color: #a8aa2f;
  32. }
  33. #registerForm main {
  34. max-width: 800px;
  35. padding: 10px;
  36. }
  37. #registerForm main h5 {
  38. font-weight: bold;
  39. margin-bottom: 0.8rem;
  40. }
  41. #registerForm main hr {
  42. margin: 0.9rem 0;
  43. border-color: #888;
  44. }
  45. #registerForm main form section {
  46. margin: 10px 0;
  47. }
  48. #registerForm main form section blockquote {
  49. height: 90px;
  50. border: 1px solid #ddd;
  51. border-radius: 5px;
  52. overflow-y: scroll;
  53. padding: 10px;
  54. }
  55. #registerForm main form section div:last-child a {
  56. color: #0066c0;
  57. }
  58. #registerForm main form section div:last-child a:hover, #registerForm main form section div:last-child a:focus {
  59. color: #00558c;
  60. text-decoration: underline;
  61. }
  62. #registerForm main footer {
  63. text-align: center;
  64. font-size: 11px;
  65. color: #6c6c6c;
  66. background: transparent;
  67. border: 0;
  68. padding: 0;
  69. }