style.css 2.1 KB

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