<div id="yin-yang"></div>
#yin-yang {
	width: 96px;
	height: 48px;
	background: #eee;
	border-color: rgb(43, 85, 115);
	border-style: solid;
	border-width: 2px 2px 50px 2px;
	border-radius: 100%;
	position: relative;
}

#yin-yang:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	background: #eee;
	border: 18px solid rgb(43, 85, 115);
	border-radius: 100%;
	width: 12px;
	height: 12px;
}
#yin-yang:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: rgb(43, 85, 115);
	border: 18px solid #eee;
	border-radius:100%;
	width: 12px;
	height: 12px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.