mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-14 00:13:31 -06:00
Prettier format invocation
This commit is contained in:
@@ -8,8 +8,7 @@ header {
|
|||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
|
|
||||||
&.glitch span {
|
&.glitch span {
|
||||||
animation:
|
animation: glitch 340ms cubic-bezier(0.46, 0.29, 0, 1.24) 1 backwards
|
||||||
glitch 340ms cubic-bezier(0.46, 0.29, 0, 1.24) 1 backwards
|
|
||||||
calc(var(--index) * 120ms),
|
calc(var(--index) * 120ms),
|
||||||
jitter 2000ms ease infinite 2s alternate-reverse;
|
jitter 2000ms ease infinite 2s alternate-reverse;
|
||||||
}
|
}
|
||||||
@@ -44,9 +43,7 @@ header {
|
|||||||
0% {
|
0% {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
text-shadow:
|
text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
|
||||||
-2px 3px 0 red,
|
|
||||||
2px -3px 0 blue;
|
|
||||||
}
|
}
|
||||||
60% {
|
60% {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
@@ -55,9 +52,7 @@ header {
|
|||||||
80% {
|
80% {
|
||||||
transform: none;
|
transform: none;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
text-shadow:
|
text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
|
||||||
2px -3px 0 red,
|
|
||||||
-2px 3px 0 blue;
|
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
@@ -66,15 +61,11 @@ header {
|
|||||||
|
|
||||||
@keyframes jitter {
|
@keyframes jitter {
|
||||||
0% {
|
0% {
|
||||||
text-shadow:
|
text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
|
||||||
-2px 3px 0 red,
|
|
||||||
2px -3px 0 blue;
|
|
||||||
transform: translate(var(--glitch-translate));
|
transform: translate(var(--glitch-translate));
|
||||||
}
|
}
|
||||||
2% {
|
2% {
|
||||||
text-shadow:
|
text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
|
||||||
2px -3px 0 red,
|
|
||||||
-2px 3px 0 blue;
|
|
||||||
}
|
}
|
||||||
4%,
|
4%,
|
||||||
100% {
|
100% {
|
||||||
|
|||||||
@@ -3,18 +3,10 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"@styles/*": [
|
"@styles/*": ["src/styles/*"],
|
||||||
"src/styles/*"
|
"@layouts/*": ["src/layouts/*"],
|
||||||
],
|
"@posts/*": ["src/pages/posts/*"],
|
||||||
"@layouts/*": [
|
"@components/*": ["src/components/*"]
|
||||||
"src/layouts/*"
|
|
||||||
],
|
|
||||||
"@posts/*": [
|
|
||||||
"src/pages/posts/*"
|
|
||||||
],
|
|
||||||
"@components/*": [
|
|
||||||
"src/components/*"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user