Skip to content

Instantly share code, notes, and snippets.

View DaniloCeesar's full-sized avatar
🐧
sudo su

Danilo César DaniloCeesar

🐧
sudo su
View GitHub Profile
@DaniloCeesar
DaniloCeesar / gist:ee41be25b67c652056f9e7a046de03f2
Created September 30, 2022 01:06 — forked from stereokai/gist:36dc0095b9d24ce93b045e2ddc60d7a0
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;
}