Horizontal CSS OR Separator
by Avinashullal
HTML
<div class="dialog-content__separator">
<span class="dialog-content__or">or</span>
</div>
CSS
.dialog-content__separator {
background-color: #C1C4C7;
height: 2px;
left: 0;
position: absolute;
top: 50%;
width:100%;
}
.dialog-content__separator .dialog-content__or {
background-color: #eee;
border-radius: 100%;
border: 1px solid #C1C4C7;
height: 40px;
left: 50%;
line-height: 38px;
margin-top: -20px;
position: absolute;
text-align: center;
top: 50%;
width: 40px;
color: #6d6d6d;
}