Skip to content

Instantly share code, notes, and snippets.

@Manasmw01
Created October 13, 2020 14:18
Show Gist options
  • Save Manasmw01/dd6a2e07904cf643af91ac057adc3817 to your computer and use it in GitHub Desktop.
Save Manasmw01/dd6a2e07904cf643af91ac057adc3817 to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
: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