/* Styles go here */ .animationStripes{ background-image: repeating-linear-gradient(-45deg, gold, gold 1em, blue 1em, blue 2em); -webkit-animation:progress 2s linear infinite; -moz-animation:progress 2s linear infinite; -ms-animation:progress 2s linear infinite; animation:progress 2s linear infinite; background-size: 150% 100%; display: none; color: white; z-index: 2; } @-webkit-keyframes progress{ 0% { background-position: 0 0; } 100% { background-position: -3em 0em; } } @-moz-keyframes progress{ 0% { background-position: 0 0; } 100% { background-position: -3em 0em; } } @-ms-keyframes progress{ 0% { background-position: 0 0; } 100% { background-position: -3em 0em; } } @keyframes progress{ 0% { background-position: 0 0; } 100% { background-position: -2.8em 0em; } }