Last active
November 22, 2018 13:18
-
-
Save ValentinFunk/6846bfd4802894846b31dd7b543c073f to your computer and use it in GitHub Desktop.
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
<html> | |
<head> | |
<style> | |
.rounded-corners-gradient-borders { | |
width: 300px; | |
height: 80px; | |
border: double 2px 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; | |
} | |
.rounded-corners-gradient-borders:hover { | |
background-image: linear-gradient(white, white), radial-gradient(circle at top left, #f00,#3020ff); | |
background-origin: border-box; | |
background-clip: border-box; | |
} | |
</style> | |
</head> | |
<div class="rounded-corners-gradient-borders"> | |
Create Trip | |
</div> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment