Skip to content

Instantly share code, notes, and snippets.

@blvkoblsk
Forked from anonymous/my.css
Last active August 2, 2017 00:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blvkoblsk/67ef0c0adea41bfefefddabdb8885fb6 to your computer and use it in GitHub Desktop.
Save blvkoblsk/67ef0c0adea41bfefefddabdb8885fb6 to your computer and use it in GitHub Desktop.
CSS Gradient (Red & Black)
background: linear-gradient(299deg, #4b1313, #000000, #000000);
background-size: 600% 600%;
-webkit-animation: AnimationName 48s ease infinite;
-moz-animation: AnimationName 48s ease infinite;
-o-animation: AnimationName 48s ease infinite;
animation: AnimationName 48s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
@keyframes AnimationName {
    0%{background-position:0% 97%}
    50%{background-position:100% 4%}
    100%{background-position:0% 97%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment