Initial xentral_oss_20.3.c9ffacf

This commit is contained in:
Alex
2021-05-21 08:49:41 +02:00
parent 5406e4a551
commit 34e5ac43d9
18884 changed files with 2109867 additions and 0 deletions
@@ -0,0 +1,44 @@
/* Progress bar
================================== */
.progress-bar {
margin: 10px;
padding: 0;
height: 4px;
border-radius: 5px;
overflow: visible;
position: relative;
background-color: var(--inactive-grey);
}
.progress-bar .progress {
width: 100%;
margin: 0;
height: 4px;
background: var(--brand-violet);
position: relative;
transition: all .3s;
border-radius: 5px;
}
.progress-bar.complete .progress {
background: var(--xentral-signature-green);
}
.progress-bar.complete .progress-bar-percentage.top{
color: var(--xentral-signature-green);
}
.progress-bar .progress-bar-percentage {
position: absolute;
top: -4px;
color: var(--xentral-signature-violet);
}
.progress-bar .progress-bar-percentage {
left: 110%;
top: -5px;
}
.progress-bar .progress-bar-percentage.top {
left: calc(50% - 13px);
top: -15px;
}