I am struggling to get the horizontal lines to work on my traffic light dashboard view for one of my website pages. Despite making multiple adjustments, it seems like I just can't get them to display correctly.
Here is an example of what I want: View Sample
And here is a fiddle showing what I currently have: https://jsfiddle.net/gunnersfan/dx19y3f4/
CSS:
.bubble {
height: 30px;
width: 30px;
color: white;
display: inline-block;
text-align: center;
vertical-align: center;
border-radius: 50%;
margin-right: 50px;
margin-left: 50px;
font-size: 90%;
}
.red-bg {
background: red;
}
.green-bg {
background: green;
}
.blue-bg {
background: blue;
}
.inline-div {
display: inline;
font-size: 75%;
font-family: verdana;
margin-left: 50px;
margin-right: 50px;
}