ProgressBar_wev8.css
611 Bytes
.wev-progress-bar {
position: relative;
height: 22px;
margin: 5px 10px;
overflow: hidden;
background-color: #ddd;
border-radius: 4px;
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.wev-progress-bar > div {
float: left;
color: #fff;
height: 100%;
background: rgb(1, 212, 143);
text-align: center;
border-radius: 4px;
-webkit-transition: 0.6s linear;
transition: 0.6s linear;
-webkit-transition-property: width, background-color;
transition-property: width, background-color;
}
.wev-progress-bar > div > div {
position: absolute;
width: 100%;
}