blob: 1085e5cfece17268342d8085282147140ab56d0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
div.progress {
background-color: var(--cs-progress-default-bg);
height: 1.5em;
width: 100%;
position: relative;
}
div.progress:before {
color: var(--cs-progress-default-fg);
content: attr(data-label);
font-size: 0.8em;
position: absolute;
text-align: center;
top: 4px;
left: 0;
right: 0;
}
div.progress span.progress-value {
background-color: var(--cs-progress-bar-bg);
display: inline-block;
height: 100%;
}
|