Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.52 KB | None | 0 0
  1. #header{z-index:2147483647;height:260px;border:0;box-shadow:inset 0 -90px 0 0 rgba(21,27,33,.6);
  2.  
  3. background-image: url(%%snow%%), url(%%snow%%), url(%%snow%%), linear-gradient(45deg,rgba(39,161,227,0),rgba(0,0,0,.3)), url(%%CP-spread%%);
  4.   background-size: 250px 250px, 500px 500px, 125px 125px, cover, cover;
  5.   background-position: 0px 0px, 0px 0px, 0px 0px, center, center -180px;
  6.   background-repeat: repeat, repeat, repeat, no-repeat, no-repeat;
  7.   -webkit-animation: snow 10s linear infinite;
  8.   -moz-animation: snow 10s linear infinite;
  9.   -ms-animation: snow 10s linear infinite;
  10.   animation: snow 10s linear infinite;
  11.   transition: all 500ms linear;
  12. }
  13. @-webkit-keyframes snow {
  14.   0% {
  15.     background-position: 0px 0px, 0px 0px, 0px 0px, center, center -180px;
  16.   }
  17.   100% {
  18.     background-position: 500px 1000px, 1000px 1000px, 375px 500px, center, center -180px;
  19.   }
  20. }
  21. @-moz-keyframes snow {
  22.   0% {
  23.     background-position: 0px 0px, 0px 0px, 0px 0px, center, center -180px;
  24.   }
  25.   100% {
  26.     background-position: 500px 1000px, 1000px 1000px, 375px 500px, center, center -180px;
  27.   }
  28. }
  29. @-ms-keyframes snow {
  30.   0% {
  31.     background-position: 0px 0px, 0px 0px, 0px 0px, center, center -180px;
  32.   }
  33.   100% {
  34.     background-position: 500px 1000px, 1000px 1000px, 375px 500px, center, center -180px;
  35.   }
  36. }
  37. @keyframes snow {
  38.   0% {
  39.     background-position: 0px 0px, 0px 0px, 0px 0px, center, center -180px;
  40.   }
  41.   100% {
  42.     background-position: 500px 1000px, 1000px 1000px, 375px 500px, center, center -180px;
  43.   }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement