diff --git a/docs/modules.html b/docs/modules.html index 8561b3b..8eed461 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -548,7 +548,7 @@
The progress bar module is very easy to use and extend. Simply create a <div>
with the .prg
class and inside it add a <span>
element with the desired style="width:XX%"
and you have a progress bar. Add text inside the <span>
element if you want. You can use the .green
or .red
variants for the <span>
element if you want to use different colors. Finally, you can always stack multiple progress bars, by simply adding more <span>
elements, just make sure their widths add up to 100% or less.
<div class="prg"><span style="width:60%;">60%</span></div>+
<div class="prg"><span class="green" style="width:40%;"></span></div> +<div class="prg"><span class="red" style="width:70%;"></span></div>+
<div class="prg"> + <span class="red" style="width:30%;"></span> + <span class="green" style="width:20%;"></span> + <span style="width:40%;"></span> +</div>+