0
|
1 ul.tree ul {
|
|
2 margin-left: 36px;
|
|
3 }
|
|
4
|
|
5 #progress {
|
|
6 position: relative;
|
|
7 /*height: 2em; */
|
|
8 width: 100%;
|
|
9 background-color: grey;
|
|
10 height: 2.5em;
|
|
11 }
|
|
12
|
|
13 #progress .label {
|
|
14 z-index: 10;
|
|
15 position: absolute;
|
|
16 left:0;
|
|
17 top: 0;
|
|
18 width: 100%;
|
|
19 font-weight: bold;
|
|
20 text-align: center;
|
|
21 text-shadow: none;
|
|
22 padding: .5em;
|
|
23 color: white;
|
|
24 }
|
|
25
|
|
26 #progress .bar {
|
|
27 z-index: 0;
|
|
28 position: absolute;
|
|
29 left:0;
|
|
30 top: 0;
|
|
31 height: 100%;
|
|
32 width: 0%;
|
|
33 background-color: green;
|
|
34 }
|