Skip to content

Instantly share code, notes, and snippets.

View bradoliver's full-sized avatar

Brad Oliver bradoliver

View GitHub Profile

Keybase proof

I hereby claim:

  • I am bradoliver on github.
  • I am bradoliver (https://keybase.io/bradoliver) on keybase.
  • I have a public key ASBiuewNbIBzAcEop0g7qOIMkLZi9YZ0bzCdWmHLhmIWnwo

To claim this, I am signing this object:

@bradoliver
bradoliver / Animated Gradient 1
Created February 9, 2017 04:47 — forked from anonymous/my.css
CSS Gradient Animation
background: linear-gradient(124deg, #e32253, #2295e3, #151e38);
background-size: 600% 600%;
-webkit-animation: AnimationName 18s ease infinite;
-moz-animation: AnimationName 18s ease infinite;
-o-animation: AnimationName 18s ease infinite;
animation: AnimationName 18s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}