css

A CSS module for fluid and responsive typography, featuring scalable text sizes based on the Golden Ratio and other typographic scales, implemented using the clamp() function for seamless readability across devices.

/** * Typographic Scale and Font Size Variables * * This CSS defines a series of font scales and size… Read more »

Stops css animation resize jank.

.animation-stopped * { animation: none !important; transition: none !important; } /* JS */ let resizeTimer; window.addEventListener("resize", () => { document.body.classList.add("animation-stopped");… Read more »