Skip to content

Instantly share code, notes, and snippets.

@ikonikre
Last active November 3, 2016 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikonikre/2735706b59768d9e0620bf555d6e73b4 to your computer and use it in GitHub Desktop.
Save ikonikre/2735706b59768d9e0620bf555d6e73b4 to your computer and use it in GitHub Desktop.
mAraQa
<div class="planet"></div>
body{
background: #2B3238;
}
.planet{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
width: 200px;
height: 200px;
border-radius: 50%;
&:before,&:after{
content: '';
border-radius: 50%;
position: absolute;
}
&:before{
width: 350px;
height: 350px;
border-right: 5px solid #fff;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotateZ(-45deg);
}
&:after{
width: 50px;
height: 50px;
background: #fff;
right: -50px;
top: -50px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment