added full styles for wp dashboard

also tweaked some styles!
This commit is contained in:
2023-09-18 07:57:20 -07:00
parent bc3da91c0d
commit 69e0695894
15 changed files with 1294 additions and 470 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;
}
}