Initial commit
This commit is contained in:
33
scss/_animations.scss
Normal file
33
scss/_animations.scss
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user