Skip to content

Instantly share code, notes, and snippets.

@rabinkumarpal
rabinkumarpal / countries
Created September 15, 2022 06:28 — forked from kalinchernev/countries
Plain text list of countries
Afghanistan
Albania
Algeria
Andorra
Angola
Antigua & Deps
Argentina
Armenia
Australia
Austria
@rabinkumarpal
rabinkumarpal / gist:581af2cb9ca53725240c0de5702ad4c0
Last active August 26, 2022 09:09 — 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: content-box, border-box;
}