css -separator
HTML
<hr>
SCSS
hr {
background: black;
padding: 24px 0;
width: 100%;
position: relative;
&::before {
content:'';
border-bottom: 1px solid white;
position: absolute;
height:24px;
top:0;
width:100%;
}
&::after {
background: white;
border-radius: 100%;
content:'';
display: block;
height: 12px;
margin: 0 auto;
position: absolute;
top: calc(25% - 6px);
width: 12px;
left: calc(50% - 24px);
border: black solid 12px;
}
}