Background Color Animation
body {
background: #2c2e35;
background: linear-gradient(136deg,#3f3e6e,#425763,#627270);
background-size: 600% 600%;
-webkit-animation: AnimationName 30s ease infinite;
-moz-animation: AnimationName 30s ease infinite;
animation: AnimationName 30s ease infinite;
}
#logo-description {
color: #aaa;
}
.frameshift-menu, .frameshift-menu .sf-menu li, .frameshift-menu .sf-menu a {
color: #BBB;
}
@-webkit-keyframes AnimationName {
0% {
background-position: 0 43%;
}
50% {
background-position: 100% 58%;
}
100% {
background-position: 0 43%;
}
}
@-moz-keyframes AnimationName {
0% {
background-position: 0 43%;
}
50% {
background-position: 100% 58%;
}
100% {
background-position: 0 43%;
}
}
@keyframes AnimationName {
0% {
background-position: 0 43%;
}
50% {
background-position: 100% 58%;
}
100% {
background-position: 0 43%;
}
}