Skip to content

Instantly share code, notes, and snippets.

@fezboy
Last active January 2, 2019 06:55
Show Gist options
  • Save fezboy/7ce2ad74dd50c3713308ef2c7da317d1 to your computer and use it in GitHub Desktop.
Save fezboy/7ce2ad74dd50c3713308ef2c7da317d1 to your computer and use it in GitHub Desktop.
A rainbow theme for linustechtips.com
@keyframes RAINBOW {
0% {background-color: red ;}
33% {background-color: blue ;}
66% {background-color: green ;}
100% {background-color: red ;}
}
body, #ipsLayout_body, #ipsLayout_contentWrapper, #ipsLayout_mainArea, #ipsLayout_sidebar, #ipsLayout_contentArea, #ipsLayout_contentWrapper, .ipsComment_content, .ipsWidget, #lmgNav, #ipsLayout_container, #lmgNav nav {
background-color: red ;
animation-name: RAINBOW;
animation-duration: 6s;
animation-iteration-count: infinite;
}
.ipsComment_content, .ipsWidget, #lmgNav {
filter: brightness(70%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment