Check out my progress bar design https://i.sstatic.net/u9SRM.png
- How can I center the 'created' and 'assigned' divs below the circle while ensuring the 'hr' line touches the circle, and it is responsive across different screen sizes?
- Any tips on how to create a perfect circle here?
Here's the HTML:
<div class="container">
<div class="progress">
<div id='content' class='filledCircle'></div>
<div>Created</div>
<hr class="line">
<div id='content' class='filledCircle'></div>
<div>Assigned</div>
</div>
</div>
And the CSS:
.container{
position: relative;
border: 3px solid mistyrose;
margin-left: 50%;
}
.progress{
display: flex;
}
hr.line{
border: none;
background: grey;
width: 100%;
height: 2px;
}
.filledCircle{
height: 25px;
width: 25px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
}
Thanks in advance for your help :)