Last active
January 2, 2019 06:55
-
-
Save fezboy/7ce2ad74dd50c3713308ef2c7da317d1 to your computer and use it in GitHub Desktop.
A rainbow theme for linustechtips.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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