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
| .progress-bar {
| position: relative;
| min-width: 100px;
| width: 100%;
| height: 12px;
| font-size: 10px;
| background-color: #FFFFFF;
| -webkit-border-radius: 6px;
| -moz-border-radius: 6px;
| -ms-border-radius: 6px;
| -o-border-radius: 6px;
| border-radius: 6px;
| border: 1px solid #bbb;
| overflow: hidden;
| }
| .progress-bar .progress-val {
| position: absolute;
| top: 0;
| left: 0;
| height: 12px;
| background-color: none;
| z-index: 10;
| width: 100%;
| text-align: center;
| }
| .progress-bar .progress {
| position: absolute;
| top: 0;
| left: 0;
| height: 12px;
| background-color: #7690D1;
| z-index: 5;
| width: 0;
| }
|
|