Skip to content

Instantly share code, notes, and snippets.

@wanybae
Last active November 19, 2020 19:03
Show Gist options
  • Save wanybae/d7bdda4e5c8bdcaf1bc6b948b4863219 to your computer and use it in GitHub Desktop.
Save wanybae/d7bdda4e5c8bdcaf1bc6b948b4863219 to your computer and use it in GitHub Desktop.
Rounded gradient border box
.rounded-gradient-borders {
// ----------------------------------------------------------------------
padding: 6px; // border weight
background-image:
linear-gradient(45deg, white 0%, #eaeaea 100%), // inside color
radial-gradient(circle at top left, #55e7e2, #30d884); // border color
background-origin: border-box;
background-clip: content-box, border-box;
border: 1px transparent;
border-radius: 10px;
border-image-slice: 1;
// ----------------------------------------------------------------------
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment