.progress-bar-wrapper .progress-bar {
height: 85px;
background: grey url(assets/progress_bar.png) bottom left repeat-x;
+ /* animate progress bar */
+ -webkit-animation: progress-bar 1.5s;
+ -moz-animation: progress-bar 1.5s;
+ animation: progress-bar 1.5s;
}
+
+ /* progress bar animation*/
+ @-webkit-keyframes progress-bar { 0% { width: 0; } }
+ @-moz-keyframes progress-bar { 0% { width: 0; } }
+ keyframes progress-bar { 0% { width: 0; } }
+
.progress-bar-wrapper:after {
content: " ";
display: block;