This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Ana Tudor
anatudor.bsky.social
did:plc:4hm2yozxzsakerfalloor5s6
#tinyCSStip Avoid ugly edges for #CSS gradient circles!
❌ DON'T 😭
(abrupt change, no semi-transparent pixels at the edge, jagged look)
radial-gradient(circle, #202 5em, #0000 0)
✅ DO 😻
(semi-transparent edge pixels, smooth look)
radial-gradient(5em, #202 calc(100% - 1px), #0000)
2024-06-03T15:29:20.514Z