redirect.css 806 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
  2. :root {
  3. --bg-color: #151515;
  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. h1 {
  27. margin: 26px 0;
  28. }
  29. h2 {
  30. margin: 18px 0;
  31. }
  32. h3 {
  33. margin: 10px 0;
  34. }
  35. a {
  36. color: #8c9eff;
  37. text-decoration: none;
  38. }
  39. a:hover {
  40. color: #acb8ff;
  41. text-decoration: underline;
  42. }
  43. #note {
  44. color: var(--bg-color-dim);
  45. margin-top: 50px;
  46. font-size: 0.8em;
  47. }