The Coolest Animated SVG Filter Effect
CSS Transform: Rotating a 3D object with perspective based on mouse position
3D Button
Grid
Animation
How to make border linear gradient
Use multiple background, then use background-origin and background-clip.
The background-origin property is used to determine how the background-position of a background in a certain box is calculated.
The background-clip property is used to determine whether the backgrounds extends into the border or not.
background: linear-gradient(to right, white, black), linear-gradient(to top, blue, red);
border: 5px solid transparent;
border-radius: 30px;
background-origin: border-box;
background-clip: padding-box, border-box;