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: 100%;
left: 50%;
position: absolute;
top: 0;
width: 1px;
}
.dialog-content__separator .dialog-content__or {
background-color: #FFF;
border-radius: 100%;
border: 1px solid #C1C4C7;
height: 40px;
left: -20px;
line-height: 38px;
margin-top: -20px;
position: absolute;
text-align: center;
top: 50%;
width: 40px;
color: #6d6d6d;
}