Advertisement
Reverend322

Will of D

Apr 18th, 2025 (edited)
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.79 KB | None | 0 0
  1. body {
  2.     background: #0f0f0f !important;
  3.     }
  4.  
  5. body:before {
  6.     content: "";
  7.     position: fixed;
  8.     top: 0;
  9.     left: 0;
  10.     width: 100%;
  11.     height: 100%;
  12.     background-image:   url("https://i.ibb.co/mC5VQx8L/red-1.png"),
  13.                         url("https://i.ibb.co/wFf7kKjn/red-2.png"),
  14.                         url("https://i.ibb.co/RG1xHZy5/red-3.png") !important;
  15.     background-size: 250px, 200px, 150px;
  16.     animation: snow 16s linear infinite;
  17. }
  18.  
  19. @keyframes snow {
  20.     0% {
  21.         background-position:    0px 0px,
  22.                                 0px 0px,
  23.                                 0px 0px;
  24.     }
  25.     100% {
  26.         background-position:    500px 1000px,
  27.                                 400px 400px,
  28.                                 300px 300px;
  29.     }
  30. }
Tags: shikimori
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement