style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. body {
  2. font-family: sans-serif;
  3. background: #000;
  4. color: #ddd;
  5. }
  6. main {
  7. position: absolute;
  8. top: 50%;
  9. left: 50%;
  10. translate: -50% -50%;
  11. text-align: center;
  12. }
  13. footer {
  14. position: absolute;
  15. bottom: 0;
  16. left: 50%;
  17. translate: -50%;
  18. font-size: .8rem;
  19. }
  20. .flash {
  21. font-weight: bolder;
  22. font-size: .8rem;
  23. color: #aaa;
  24. animation: flash 3s infinite;
  25. }
  26. @keyframes flash {
  27. from,
  28. 50%,
  29. to {
  30. opacity: 1;
  31. }
  32. 25%,
  33. 75% {
  34. opacity: 0;
  35. }
  36. }
  37. /**
  38. Space Travel Animated Background
  39. Credit to https://misspriyankadas.medium.com/space-travel-animation-using-html-and-css-676f4232754c
  40. */
  41. #space,
  42. .stars {
  43. overflow: hidden;
  44. position: absolute;
  45. z-index: -1;
  46. top: 0;
  47. bottom: 0;
  48. left: 0;
  49. right: 0;
  50. }
  51. .stars {
  52. background-image:
  53. radial-gradient(2px 2px at 20px 30px, #eee, rgba(0, 0, 0, 0)),
  54. radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
  55. radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
  56. radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
  57. radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0)),
  58. radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0, 0, 0, 0));
  59. background-repeat: repeat;
  60. background-size: 200px 200px;
  61. animation: zoom 4s infinite;
  62. opacity: 0;
  63. }
  64. .stars:nth-child(1) {
  65. background-position: 50% 50%;
  66. animation-delay: 0s;
  67. }
  68. .stars:nth-child(2) {
  69. background-position: 20% 60%;
  70. animation-delay: 1s;
  71. }
  72. .stars:nth-child(3) {
  73. background-position: -20% -30%;
  74. animation-delay: 2s;
  75. }
  76. .stars:nth-child(4) {
  77. background-position: 40% -80%;
  78. animation-delay: 3s;
  79. }
  80. @keyframes zoom {
  81. 0% {
  82. opacity: 0;
  83. transform: scale(0.5);
  84. animation-timing-function: ease-in;
  85. }
  86. 85% {
  87. opacity: 1;
  88. transform: scale(2.8);
  89. animation-timing-function: linear;
  90. }
  91. 100% {
  92. opacity: 0;
  93. transform: scale(3.5);
  94. }
  95. }