redirect.css 1.1 KB

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