blob: 37eeb380f6e5e08ce4ad996e8ea16f0b9f5f2c6d (
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(--bg-color-selected);
height: 1.5em;
width: 100%;
position: relative;
}
div.progress:before {
color: var(--fg-color-intensive);
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(--bg-color-intensive);
display: inline-block;
height: 100%;
}
|