Skip to content

Instantly share code, notes, and snippets.

View LuisSaybe's full-sized avatar
🌃
Listening to Night Tempo

Luis E. Banegas Saybe LuisSaybe

🌃
Listening to Night Tempo
View GitHub Profile
@stereokai
stereokai / gist:36dc0095b9d24ce93b045e2ddc60d7a0
Last active March 25, 2024 03:22
CSS rounded corners with gradient border
.rounded-corners-gradient-borders {
width: 300px;
height: 80px;
border: double 4px transparent;
border-radius: 80px;
background-image: linear-gradient(white, white), radial-gradient(circle at top left, #f00,#3020ff);
background-origin: border-box;
background-clip: padding-box, border-box;
}