Skip to content

Instantly share code, notes, and snippets.

@ZeroQLi
Created April 8, 2023 18:56
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 ZeroQLi/1e7393cad37bddd2cd695552dbcf657b to your computer and use it in GitHub Desktop.
Save ZeroQLi/1e7393cad37bddd2cd695552dbcf657b to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Subrayada&family=Space+Grotesk&display=swap');
:root {
--colors-background: #1a1b26;
--colors-text: #e0af68;
--colors-elevated: #24283b;
--fonts-body: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI';
}
@keyframes flicker {
0%, 18%, 22%, 25%, 53%, 57%, 72%,100% {
text-shadow:
0 0 4px #fff,
0 0 11px #fff,
0 0 19px #fff,
0 0 40px #FF0000,
0 0 80px #FF0000,
0 0 90px #FF0000,
0 0 100px #FF0000,
0 0 150px #FF0000;
}
20%, 24%, 55%, 66% {
text-shadow: none;
}
}
.header-title-name {
animation: flicker 1.5s infinite alternate;
color: #880808;
font-family: 'Montserrat Subrayada'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment