Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.42 KB | None | 0 0
  1. #header {
  2.   background-image: url(%%snow%%), url(%%snow%%), url(%%snow%%), url(%%bg%%);
  3.   background-size: 250px 250px, 500px 500px, 125px 125px, 1920px 596px;
  4.   background-position: 0px 0px, 0px 0px, 0px 0px, 0px -180px;
  5.   background-repeat: repeat, repeat, repeat, no-repeat;
  6.   -webkit-animation: snow 10s linear infinite;
  7.   -moz-animation: snow 10s linear infinite;
  8.   -ms-animation: snow 10s linear infinite;
  9.   animation: snow 10s linear infinite;
  10.   background-color: #142552;
  11.   transition: all 500ms linear;
  12.   overflow: hidden;
  13.   height: 300px;
  14.   border: none;
  15. }
  16. @media screen and (max-width: 1400px) {
  17.   #header {
  18.     height: 200px;
  19.   }
  20. }
  21. @-webkit-keyframes snow {
  22.   0% {
  23.     background-position: 0px 0px, 0px 0px, 0px 0px, 0px -180px;
  24.   }
  25.   100% {
  26.     background-position: 500px 1000px, 1000px 1000px, 375px 500px, 0px -180px;
  27.   }
  28. }
  29. @-moz-keyframes snow {
  30.   0% {
  31.     background-position: 0px 0px, 0px 0px, 0px 0px, 0px -180px;
  32.   }
  33.   100% {
  34.     background-position: 500px 1000px, 1000px 1000px, 375px 500px, 0px -180px;
  35.   }
  36. }
  37. @-ms-keyframes snow {
  38.   0% {
  39.     background-position: 0px 0px, 0px 0px, 0px 0px, 0px -180px;
  40.   }
  41.   100% {
  42.     background-position: 500px 1000px, 1000px 1000px, 375px 500px, 0px -180px;
  43.   }
  44. }
  45. @keyframes snow {
  46.   0% {
  47.     background-position: 0px 0px, 0px 0px, 0px 0px, 0px -180px;
  48.   }
  49.   100% {
  50.     background-position: 500px 1000px, 1000px 1000px, 375px 500px, 0px -180px;
  51.   }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement