Skip to content

Instantly share code, notes, and snippets.

@OdinsHat
Created March 4, 2015 09:09
Show Gist options
  • Save OdinsHat/54128fe19bab41f0eda8 to your computer and use it in GitHub Desktop.
Save OdinsHat/54128fe19bab41f0eda8 to your computer and use it in GitHub Desktop.
QwBqRg
<div id="yin-yang"></div>
#yin-yang {
width: 96px;
height: 48px;
background: #eee;
border-color: black;
border-style: solid;
border-width: 2px 2px 50px 2px;
border-radius: 100%;
position: relative;
&:before {
content: "";
position: absolute;
top: 50%;
left: 0;
background: #eee;
border: 18px solid black;
border-radius: 100%;
width: 12px;
height: 12px;
}
&:after {
content: "";
position: absolute;
top: 50%;
left: 50%;
background: black;
border: 18px solid #eee;
border-radius:100%;
width: 12px;
height: 12px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment