Skip to content

Instantly share code, notes, and snippets.

@cfinster
cfinster / my.css
Created April 14, 2015 07:30 — forked from anonymous/my.css
background: linear-gradient(62deg, #250c4e, #be4cbf);
background-size: 400% 400%;
-webkit-animation: AnimationName 10s ease infinite;
-moz-animation: AnimationName 10s ease infinite;
-o-animation: AnimationName 10s ease infinite;
animation: AnimationName 10s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 74%}
    50%{background-position:100% 27%}
    100%{background-position:0% 74%}
@cfinster
cfinster / my.css
Created February 27, 2015 16:51 — forked from anonymous/my.css
background: linear-gradient(270deg, #25072b, #9926b0);
background-size: 400% 400%;
-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:50% 0%}
    50%{background-position:51% 100%}
    100%{background-position:50% 0%}
@cfinster
cfinster / my.css
Created February 26, 2015 20:23 — forked from anonymous/my.css
background: linear-gradient(226deg, #e37ada, #561751);
background-size: 400% 400%;
-webkit-animation: AnimationName 15s ease infinite;
-moz-animation: AnimationName 15s ease infinite;
-o-animation: AnimationName 15s ease infinite;
animation: AnimationName 15s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 77%}
    50%{background-position:100% 24%}
    100%{background-position:0% 77%}
@cfinster
cfinster / my.css
Last active August 29, 2015 14:16 — forked from anonymous/my.css
background: linear-gradient(54deg, #63185d, #ae4ea6, #7d2275);
background-size: 600% 600%;
-webkit-animation: AnimationName 9s ease infinite;
-moz-animation: AnimationName 9s ease infinite;
-o-animation: AnimationName 9s ease infinite;
animation: AnimationName 9s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:53% 0%}
    50%{background-position:48% 100%}
    100%{background-position:53% 0%}
@cfinster
cfinster / my.css
Created February 19, 2015 10:09 — forked from anonymous/my.css
background: linear-gradient(0deg, #602e72, #ac72c1, #f5eef7);
background-size: 600% 600%;
-webkit-animation: AnimationName 30s ease infinite;
-moz-animation: AnimationName 30s ease infinite;
-o-animation: AnimationName 30s ease infinite;
animation: AnimationName 30s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
@cfinster
cfinster / my.css
Created January 29, 2015 04:52 — forked from anonymous/my.css
background: linear-gradient(14deg, #25072b, #651276);
background-size: 400% 400%;
-webkit-animation: amorette-gradient 46s ease infinite;
-moz-animation: amorette-gradient 46s ease infinite;
-o-animation: amorette-gradient 46s ease infinite;
animation: amorette-gradient 46s ease infinite;
@-webkit-keyframes amorette-gradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
@cfinster
cfinster / .gitconfig
Last active August 29, 2015 14:14 — forked from pksunkara/config
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
@include keyframe(fadeout) {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}