Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save animatedcreativity/c1666668a53ce698937738969bddd506 to your computer and use it in GitHub Desktop.

Select an option

Save animatedcreativity/c1666668a53ce698937738969bddd506 to your computer and use it in GitHub Desktop.
Hollow Circle - Pure CSS - without border
div {
border-radius: 50%;
height: 300px;
width: 300px;
background: radial-gradient(circle at 50% 50%, rgba(238, 130, 238, 0) 50%, rgba(238, 130, 238, 1) 50.5%);
}
body {
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(90deg, rgba(255, 255, 0, 1) 0%, rgba(0, 188, 212, 1) 50%, rgba(238, 130, 238, 1) 100%);
width: 100vw;
height: 100vh;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment