refactoring

This commit is contained in:
Devaev Maxim
2018-10-09 16:20:41 +03:00
parent 2c241fab44
commit a449b39c52
17 changed files with 142 additions and 140 deletions

23
web/css/progress.css Normal file
View File

@@ -0,0 +1,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%;
}