Last active
March 29, 2020 17:17
-
-
Save 409H/fbb04116a67284cd2b350fc013829824 to your computer and use it in GitHub Desktop.
This file contains 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
#page_content > div > div:nth-child(1) { | |
height: 100%; | |
width: 100%; | |
left:0; | |
right: 0; | |
top: 0; | |
bottom: 0; | |
position: absolute; | |
background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3); | |
background-size: 1800% 1800%; | |
-webkit-animation: rainbow 18s ease infinite; | |
-z-animation: rainbow 18s ease infinite; | |
-o-animation: rainbow 18s ease infinite; | |
animation: rainbow 18s ease infinite;} | |
@-webkit-keyframes rainbow { | |
0%{background-position:0% 82%} | |
50%{background-position:100% 19%} | |
100%{background-position:0% 82%} | |
} | |
@-moz-keyframes rainbow { | |
0%{background-position:0% 82%} | |
50%{background-position:100% 19%} | |
100%{background-position:0% 82%} | |
} | |
@-o-keyframes rainbow { | |
0%{background-position:0% 82%} | |
50%{background-position:100% 19%} | |
100%{background-position:0% 82%} | |
} | |
@keyframes rainbow { | |
0%{background-position:0% 82%} | |
50%{background-position:100% 19%} | |
100%{background-position:0% 82%} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment