1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
div.simple_bars div.row {
position: relative;
padding: 3px 1%;
width: 100%;
overflow: auto;
}
div.simple_bars div.row span.label {
display: block;
float: left;
width: 30%;
overflow: hidden;
}
div.simple_bars div.row span.barArea {
display: block;
float: left;
width: 60%;
overflow: hidden;
}
div.simple_bars div.row span.barArea span.bar {
display: block;
}
div.simple_bars span.bar {
background-color: #4d89f9;
}
div.simple_bars div.row span.value {
display: block;
float: left;
width: 8%;
text-align: right;
}
|