Skip to content

Instantly share code, notes, and snippets.

@jalbertbowden
Forked from charliepark/rainbow-border.css
Created April 12, 2013 18:50
Show Gist options
  • Save jalbertbowden/5374215 to your computer and use it in GitHub Desktop.
Save jalbertbowden/5374215 to your computer and use it in GitHub Desktop.
@-webkit-keyframes rainbow {
0% {border-color: hsl(0, 100%, 50%);}
100% {border-color: hsl(255, 100%, 50%);}
}
.rainbow_border{
border: 4px solid hsl(0, 100%, 50%);
-webkit-animation: rainbow 5s infinite alternate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment