Skip to content

Instantly share code, notes, and snippets.

@emilyjiayaoli
Created July 23, 2022 02:28
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/fecd3479521d2e2d7411773222693bba to your computer and use it in GitHub Desktop.
Save emilyjiayaoli/fecd3479521d2e2d7411773222693bba 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;
--border-radius: 20px;
--fonts-body: 'Edu VIC WA NT Beginner' , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI';
}
.header-title-avatar {
animation: rotate 5s infinite;
}
.posts {
background-color: var(--colors-text);
border-radius: var(--border-radius);
width: auto;
outline-color: var(colors-text) !important;
box-shadow: 12px 12px 2px 1px var(--colors-text);
}
@keyframes rotate {
0% {
transform: scale(0.5) translate(-100%, -100%);
}
10% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment