Initial commit

This commit is contained in:
2025-05-11 12:58:47 -07:00
commit 3babf93b0e
11 changed files with 1952 additions and 0 deletions

33
scss/_animations.scss Normal file
View File

@ -0,0 +1,33 @@
/* Flickering animation */
@keyframes flicker {
0%,
18%,
22%,
25%,
53%,
57%,
100% {
text-shadow:
0 0 4px var(--href-dark),
0 0 11px var(--href-dark),
0 0 19px var(--href-dark),
0 0 40px var(--href),
0 0 80px var(--href),
0 0 150px var(--href);
}
20%,
24%,
55% {
text-shadow: none;
}
}
@keyframes slide {
to {
background-position: 4500vh;
}
}