Created
October 13, 2020 14:18
-
-
Save Manasmw01/dd6a2e07904cf643af91ac057adc3817 to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
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
:root { | |
--colors-background: #00e0bF; | |
--colors-text: #3900ef; | |
--colors-elevated: #efefef; | |
} | |
@keyframes rotate { | |
0% { | |
transform: rotate(0deg); | |
} | |
25% { | |
transform: rotate(1deg); | |
} | |
50% { | |
transform: rotate(-1deg); | |
} | |
100% { | |
transform: rotate(0deg); | |
} | |
} | |
.post{ | |
animation: rotate 2s infinite; | |
} | |
.header-col-1{ | |
animation: rotate 2s infinite; | |
} | |
.header-title-name { | |
animation: rainbow 3s infinite; | |
} | |
@keyframes rainbow { | |
25% { | |
color: orange; | |
} | |
50% { | |
color: green; | |
} | |
75% { | |
color: cyan; | |
} | |
100% { | |
color: purple; | |
} | |
}.post :hover { | |
transform: scale(1.09); | |
} | |
.post { | |
transition: all 0.5s ease-in-out; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment