Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created October 10, 2013 09:35
Show Gist options
  • Select an option

  • Save LeaVerou/6915653 to your computer and use it in GitHub Desktop.

Select an option

Save LeaVerou/6915653 to your computer and use it in GitHub Desktop.
Sorta conical gradient
/**
* Sorta conical gradient
*/
div {
width: 200px; height: 200px;
border-radius: 50%;
background: grey;
overflow: hidden;
}
div:before {
content: '';
display: block;
border: 100px solid;
border-color: yellow fuchsia aqua limegreen;
border-radius: 50%;
-webkit-filter: blur(40px);
}
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment