Advertisement
Reverend322

Снег на фоне

Feb 9th, 2025
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.67 KB | None | 0 0
  1. body {
  2.     background: #4e5257 !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.imgur.com/TpOI4DC.png"),
  13.                         url("https://i.imgur.com/92lgmBN.png"),
  14.                         url("https://i.imgur.com/ACiIkIG.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