redirect.css 884 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
  2. :root {
  3. --bg-color: #282c34;
  4. --bg-color-dim: #fff;
  5. }
  6. * {
  7. font-family: "Roboto", "Segoe UI", "Calibri", "San Francisco", sans-serif;
  8. }
  9. html {
  10. font-size: 18px;
  11. height: 100%;
  12. }
  13. body {
  14. background-color: var(--bg-color);
  15. color: white;
  16. height: 100%;
  17. }
  18. main {
  19. display: flex;
  20. flex-direction: column;
  21. min-height: 100%;
  22. justify-content: center;
  23. align-items: center;
  24. text-align: center;
  25. }
  26. img#logo {
  27. display: block;
  28. height: 250px;
  29. margin-bottom: 25px;
  30. }
  31. h1 {
  32. margin: 26px 0;
  33. }
  34. h2 {
  35. margin: 18px 0;
  36. }
  37. h3 {
  38. margin: 10px 0;
  39. }
  40. a {
  41. color: #8c9eff;
  42. text-decoration: none;
  43. }
  44. a:hover {
  45. color: #acb8ff;
  46. text-decoration: underline;
  47. }
  48. #note {
  49. color: var(--bg-color-dim);
  50. margin-top: 50px;
  51. font-size: 0.8em;
  52. }