Progress Bar
INFO
The progress bar is used to show the (loading) progress of a process.
.c-progress > .c-progress__bar.h-width-30
html
<div class="c-progress">
<div class="c-progress__bar h-width-30"></div>
</div>1
2
3
2
3
Animate
.c-progressbar > .c-progress__bar.-animate[style="animation-duration: 10s"]
Show Code
html
<div class="c-progress">
<div class="c-progress__bar -animate" style="animation-duration: 10s"></div>
</div>1
2
3
2
3
With Text
.c-progressbar > .c-progress__bar > .c-progress__bar__text
Frage 1 / 5
Show Code
html
<div class="c-progress">
<div class="c-progress__bar h-width-25">
<span class="c-progress__bar__text">Frage 1 / 5</span>
</div>
</div>1
2
3
4
5
2
3
4
5
Modifiers
Light Version
.c-progress.-light
Show Code
html
<div class="c-progress -light">
<div class="c-progress__bar h-width-70"></div>
</div>1
2
3
2
3
Success Color
.c-progressbar.-success
Show Code
html
<div class="c-progress">
<div class="c-progress__bar -success h-width-70"></div>
</div>1
2
3
2
3