I want to make the orange and the blue circles on the top of the line going in-between.
.content-wrap {
border-left: 1px dashed black;
height: 5em;
position: absolute;
}
.content-wrap::before {
position: absolute;
top: calc(50% - 1px);
right: 0;
left: 0;
Content: "";
border: none;
height: 2px;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class="content-wrap">
<font-awesome-icon class="icon1" fixed-width icon="dot-circle" />
<font-awesome-icon class="icon2" fixed-width icon="map-marker-alt" />
</div>
Current output:

Desired Output:
