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.
32 lines
644 B
32 lines
644 B
.progressbar {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
-moz-border-radius: 5px 5px 5px 5px;
|
|
-webkit-border-radius: 5px 5px 5px 5px;
|
|
border-radius: 5px 5px 5px 5px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
.progressbar-text {
|
|
text-align: center;
|
|
position: absolute;
|
|
}
|
|
.progressbar-value {
|
|
position: relative;
|
|
overflow: hidden;
|
|
width: 0;
|
|
-moz-border-radius: 5px 0 0 5px;
|
|
-webkit-border-radius: 5px 0 0 5px;
|
|
border-radius: 5px 0 0 5px;
|
|
}
|
|
.progressbar {
|
|
border-color: #000;
|
|
}
|
|
.progressbar-text {
|
|
color: #fff;
|
|
font-size: 12px;
|
|
}
|
|
.progressbar-value .progressbar-text {
|
|
background-color: #0052A3;
|
|
color: #fff;
|
|
}
|
|
|