Skip to content

Instantly share code, notes, and snippets.

@Juan-Gon03
Created January 16, 2021 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Juan-Gon03/89fd6a6c7e344c83eaffa96caba98c69 to your computer and use it in GitHub Desktop.
Save Juan-Gon03/89fd6a6c7e344c83eaffa96caba98c69 to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
:root{
--colors-background:#abc4ed;
--colors-text:#000;
--colors-elevated:#739ee6;
}
.header-title-name {
animation: rainbow 5s infinite;
}
@keyframes rainbow {
14% {
color: red;
}
28% {
color: orange;
}
42% {
color: yellow;
}
56% {
color: green;
}
70% {
color: cyan;
}
84% {
color: blue;
}
100% {
color: purple;
}
}
.post {
transition: all 0.2s ease-in-out;
}
.post :hover {
transform: scale(1.02);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment