1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| }
@keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 0 100%; }
}
@-webkit-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 0 100%; }
}
@-ms-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 0 100%; }
}
@-moz-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 0 100%; }
}
#animate-area {
background: #f5f0e0 url(../images/noise3.png);
background-position: 0px 0px;
background-repeat: repeat-y;
animation: animatedBackground 5s linear infinite;
-ms-animation: animatedBackground 5s linear infinite;
-moz-animation: animatedBackground 5s linear infinite;
-webkit-animation: animatedBackground 5s linear infinite;
border: 5px solid #7FD0A1;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
-moz-box-shadow: 0px 0px 70px #000000;
-webkit-box-shadow: 0px 0px 70px #000000;
box-shadow: 0px 0px 70px #000000; |