Created
September 12, 2020 13:25
-
-
Save sampoder/b90796acad97f969cd5685b79b51d833 to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
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
/* @keyframes rainbow { | |
14% { | |
color: #ff0000; | |
} | |
28% { | |
color: #ffa500; | |
} | |
42% { | |
color: #ffff00; | |
} | |
56% { | |
color: #008000; | |
} | |
70% { | |
color: #0000ff; | |
} | |
84% { | |
color: #4b0082; | |
} | |
100% { | |
color: #ee82ee; | |
} | |
} | |
.header-title-name{ | |
animation: rainbow 5s infinite; | |
} | |
.post:hover { | |
transform: scale(1.02); | |
} | |
.post { | |
transition: all .2s ease-in-out; | |
} */ | |
:root { | |
--colors-background: #a633d6; | |
--colors-text: #ffff; | |
--colors-elevated: #228B22; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment