blob: 5529a550c58bce34a6c5eff2dd1289587c3d56a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
.progress-bar-view {
display: -webkit-box;
padding: 5px;
.progress-bar-outside {
display: flex;
width: 90%;
justify-content: space-between;
background-color: lightgray;
border-radius: 15px;
height: 10px;
.progress-bar-inside {
display: block;
border: 1px solid gainsboro;
background-color: #4faa39;
border-radius: inherit;
}
}
.progress-bar-view-label {
margin-right: -30px;
margin-top: -2px;
margin-left: 10px;
color: black;
}
}
|