Last active
August 25, 2019 20:12
-
-
Save kreativan/231c681cb26decb271cf0be32c50eeca to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/** | |
* Gradient color mixin | |
* Works great with text & icons fonts | |
*/ | |
.gradient-color-mixin(@color, @color-2, @deg: 90deg) { | |
color: transparent; | |
background-image: -webkit-linear-gradient(@deg, @color-2 0%, @color 100%); | |
background-image: -moz-linear-gradient(@deg, @color-2 0%, @color 100%); | |
background-image: linear-gradient(@deg, @color-2 0%, @color 100%); | |
-webkit-background-clip: text; | |
-moz-background-clip: text; | |
background-clip: text; | |
-webkit-text-fill-color: transparent; | |
-moz-text-fill-color: transparent; | |
text-fill-color: transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment