1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/application/frontend/skin/developer/components/progressbar/css/progressbar.css
2014-10-28 19:06:24 +07:00

34 lines
1,005 B
CSS

/**
* Progress Bar
*/
.progress-bar {
height: 25px;
width: 100%;
background: #8BC4E0;
color: #fff;
overflow: hidden;
position: relative;
border-radius: 3px;
}
.progress-bar-value {
height: 25px;
background: #149bdf;
background: -moz-linear-gradient(top, #149bdf 0%, #0480be 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, #149bdf), color-stop(100%, #0480be));
background: -webkit-linear-gradient(top, #149bdf 0%, #0480be 100%);
background: -o-linear-gradient(top, #149bdf 0%, #0480be 100%);
background: -ms-linear-gradient(top, #149bdf 0%, #0480be 100%);
background: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#149bdf', endColorstr='#0480be', GradientType=0 );
}
.progress-bar-label {
height: 25px;
width: 100%;
line-height: 25px;
text-align: center;
position: absolute;
top: 0;
left: 0;
color: #fff;
}