You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
603 B
30 lines
603 B
.progressbar {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
-moz-border-radius: 0px 0px 0px 0px;
|
|
-webkit-border-radius: 0px 0px 0px 0px;
|
|
border-radius: 0px 0px 0px 0px;
|
|
overflow: hidden;
|
|
}
|
|
.progressbar-text {
|
|
text-align: center;
|
|
position: absolute;
|
|
}
|
|
.progressbar-value {
|
|
position: relative;
|
|
overflow: hidden;
|
|
width: 0;
|
|
-moz-border-radius: 0px 0 0 0px;
|
|
-webkit-border-radius: 0px 0 0 0px;
|
|
border-radius: 0px 0 0 0px;
|
|
}
|
|
.progressbar {
|
|
border-color: #ddd;
|
|
}
|
|
.progressbar-text {
|
|
color: #444;
|
|
}
|
|
.progressbar-value .progressbar-text {
|
|
background-color: #CCE6FF;
|
|
color: #000;
|
|
}
|
|
|