Last active
November 19, 2020 19:03
-
-
Save wanybae/d7bdda4e5c8bdcaf1bc6b948b4863219 to your computer and use it in GitHub Desktop.
Rounded gradient border box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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