Created
March 4, 2015 09:09
-
-
Save OdinsHat/54128fe19bab41f0eda8 to your computer and use it in GitHub Desktop.
QwBqRg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="yin-yang"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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