style.css 2.0 KB

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