I'd like to make a custom Bootstrap progress-tracker like this:
with pure HTML/CSS. This is what I have so far
HTML:
<div class="progress progress-manager">
<div class="progress-bar progress-bar-done" role="progressbar" aria-valuenow="14" aria-valuemin="0" aria-valuemax="100" style: "width:14%">
<div id="circle"></div>
</div>
</div>
<br/>
CSS:
#circle{
color: blue;
background-color: blue;
width: 50px;
height: 50px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
}
Which spits out the following (notice the circle doesn't extend past the progress bar):
Bootstrap doesn't have a :before
pseudo element for its progress bar, so how might I achieve a result similar to the example?