Skip to content

Instantly share code, notes, and snippets.

@newmedia2
Created April 12, 2020 16:25
Show Gist options
  • Save newmedia2/3ba7ef0169b008724874ba65a36411d9 to your computer and use it in GitHub Desktop.
Save newmedia2/3ba7ef0169b008724874ba65a36411d9 to your computer and use it in GitHub Desktop.
Animated Gradient Text
<h1>
Colt's Code Camp
</h1>
@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