Skip to content

Instantly share code, notes, and snippets.

View mrenty's full-sized avatar

Michiel Renty mrenty

View GitHub Profile
@mrenty
mrenty / radial-gradient.css
Created July 15, 2022 08:41
Radial gradient
div {
background: none;
width: 200px;
height: 200px;
border-radius: 50%;
--size: 16px;
--gradient: radial-gradient(circle at top, #ffb199, #ff0844);
position: relative;
}