Skip to content

Instantly share code, notes, and snippets.

View BagheeraBear's full-sized avatar

Ulf Swedin BagheeraBear

View GitHub Profile
@BagheeraBear
BagheeraBear / my.css
Created June 30, 2017 07:08 — forked from anonymous/my.css
CSS Gradient Animation
background: linear-gradient(265deg, #5f06f3, #f2153a);
background-size: 400% 400%;
-webkit-animation: CloudHappy 30s ease infinite;
-moz-animation: CloudHappy 30s ease infinite;
-o-animation: CloudHappy 30s ease infinite;
animation: CloudHappy 30s ease infinite;
@-webkit-keyframes CloudHappy {
    0%{background-position:0% 54%}
    50%{background-position:100% 47%}
    100%{background-position:0% 54%}
@BagheeraBear
BagheeraBear / my.css
Created June 30, 2017 07:05 — forked from anonymous/my.css
CSS Gradient Animation
background: linear-gradient(270deg, #f50639, #9d32d9);
background-size: 400% 400%;
-webkit-animation: Uffe1 30s ease infinite;
-moz-animation: Uffe1 30s ease infinite;
-o-animation: Uffe1 30s ease infinite;
animation: Uffe1 30s ease infinite;
@-webkit-keyframes Uffe1 {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}