Created
April 12, 2020 16:25
-
-
Save newmedia2/3ba7ef0169b008724874ba65a36411d9 to your computer and use it in GitHub Desktop.
Animated Gradient Text
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
<h1> | |
Colt's Code Camp | |
</h1> |
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Rubik:wght@300;400&display=swap'); | |
body { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
} | |
h1 { | |
background: radial-gradient(circle, #F48FB1 0%, #CE93D8 20%, #B2EBF2 40%, #A5D6A7 60%, #B39DDB 100%); | |
font-size: 100px; | |
-webkit-background-clip: text; | |
color: transparent; | |
background-size: 400%; | |
animation: gradient 10s linear infinite alternate; | |
font-family: Open Sans, sans-serif; | |
font-weight: 100; | |
} | |
@keyframes gradient { | |
0% { | |
background-position: 0%; | |
} | |
100% { | |
background-position: 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment