A Pen by robert masen on CodePen.
Created
May 19, 2019 01:06
-
-
Save FreeMasen/a78005482ef962ad84f2e1374f211f4d to your computer and use it in GitHub Desktop.
QRgXWJ
This file contains hidden or 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
<svg viewBox="0 0 50 50"> | |
<defs> | |
<mask id="mask"> | |
<circle | |
r="24" | |
cy="25" | |
cx="25" | |
fill="white" | |
/> | |
<circle | |
r="18" | |
cy="25" | |
cx="25" | |
stroke="black" | |
stroke-width="1" | |
fill="white" | |
/> | |
</mask> | |
</defs> | |
<circle r="24" | |
cx="25" | |
cy="25" | |
fill="#0BDBF3" | |
mask="url(#mask)" | |
/> | |
</svg> |
This file contains hidden or 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
svg { | |
width: 200px; | |
height: 200px; | |
border: 1px solid black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment