Skip to content

Instantly share code, notes, and snippets.

@emilyjiayaoli
Created July 23, 2022 02:10
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 emilyjiayaoli/3989d0f173d4ad6ee5903bf33ab1ec10 to your computer and use it in GitHub Desktop.
Save emilyjiayaoli/3989d0f173d4ad6ee5903bf33ab1ec10 to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
@import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner&display=swap');
:root{
--colors-background: #d3eaf0;
--colors-text: #00577d;
--colors-elevated: #b2d3db;
--fonts-body: 'Edu VIC WA NT Beginner' , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI';
}
@keyframes rotate {
0% {
transform: scale(0.5) translate(-100%, -100%);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
.header-title-avatar {
animation: rotate 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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment