<div class="flower"></div>
<div class="flower" style="--w: 250px"></div>
<div class="flower" style="--w: 150px"></div>
$n: 12; /* the number of circles/petals */
.flower {
--w: 300px; /* the size */
--r: calc(var(--w)/(2*(1 + 1/sin(180deg/#{$n}))));
width: var(--w);
aspect-ratio: 1;
$m: (); /* empty variable */
@for $i from 1 through ($n) { /* loop through the number of circles*/
$m: append($m,
radial-gradient(50% 50%,#000 98%,#0000) no-repeat
calc(50% + 50%*cos(360deg*#{$i/$n}))
calc(50% + 50%*sin(360deg*#{$i/$n}))
/ calc(2*var(--r)) calc(2*var(--r)),
comma);
}
mask: radial-gradient(#000 calc(var(--r)/tan(180deg/#{$n})),#0000 calc(var(--r)/tan(180deg/#{$n}) + 1px)),#{$m};
background: linear-gradient(60deg,#2d576d,#e0236f)
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-content: center;
place-items: center;
grid-auto-flow: column;
gap: 30px;
background: #E0E4CC;
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.