init elas atelier #1

Merged
nvrl merged 82 commits from ela into main 2026-05-18 13:55:42 +02:00
2 changed files with 8 additions and 8 deletions
Showing only changes of commit dc8e3d55b1 - Show all commits
+2 -2
View File
@@ -202,6 +202,8 @@ export default function PostList({ posts: initialPosts, isAdmin = false }: Props
<span>{formatYear(post.date)}</span>
</div>
</div>
<PlateSigil />
</a>
{post.tags && post.tags.length > 0 && (
@@ -237,8 +239,6 @@ export default function PostList({ posts: initialPosts, isAdmin = false }: Props
</button>
</div>
)}
<PlateSigil />
</article>
);
})}
@@ -428,14 +428,14 @@ html.cybersigil body::after {
stroke: color-mix(in srgb, var(--mauve) 68%, var(--sky));
filter: drop-shadow(0 0 4px color-mix(in srgb, var(--mauve) 55%, transparent));
}
.cybersigil .plate-enter:hover .cs-plate-sig,
.cybersigil .plate-enter:focus-within .cs-plate-sig {
.cybersigil .plate:hover .cs-plate-sig,
.cybersigil .plate:focus-visible .cs-plate-sig {
opacity: 0.5;
}
.cybersigil .plate-enter:hover .cs-plate-sig .cs-sigil path,
.cybersigil .plate-enter:hover .cs-plate-sig .cs-sigil line,
.cybersigil .plate-enter:focus-within .cs-plate-sig .cs-sigil path,
.cybersigil .plate-enter:focus-within .cs-plate-sig .cs-sigil line {
.cybersigil .plate:hover .cs-plate-sig .cs-sigil path,
.cybersigil .plate:hover .cs-plate-sig .cs-sigil line,
.cybersigil .plate:focus-visible .cs-plate-sig .cs-sigil path,
.cybersigil .plate:focus-visible .cs-plate-sig .cs-sigil line {
animation: cs-carve 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
animation-delay: calc(var(--i, 0) * 55ms);
}