Skip to content

Instantly share code, notes, and snippets.

View jimpala's full-sized avatar

James Pyne jimpala

View GitHub Profile
@jimpala
jimpala / my.css
Created July 27, 2016 22:00 — forked from anonymous/my.css
CSS Gradient Animation
background: linear-gradient(72deg, #004276, #08082d);
background-size: 400% 400%;
-webkit-animation: AnimationName 16s ease infinite;
-moz-animation: AnimationName 16s ease infinite;
-o-animation: AnimationName 16s ease infinite;
animation: AnimationName 16s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 78%}
    50%{background-position:100% 23%}
    100%{background-position:0% 78%}