Feat: variables z-index + header au-dessus du menu

- style.css : plage z-index (--z-base, --z-content, --z-menu, --z-header, --z-cursor)
- Menu : show() au lieu de showModal() pour sortir du top-layer natif,
  Escape géré manuellement via keydown, z-index: var(--z-menu), position: fixed
- Header : z-index: var(--z-header) sur navbar, logo et toggle (toujours au-dessus du menu)
- Cursor/cursor.css : z-index: var(--z-cursor)
- Home : z-index: var(--z-content) sur home-text

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-02-19 13:59:19 +01:00
parent 3e9657430f
commit b7d825b2f0
6 changed files with 98 additions and 75 deletions

View file

@ -135,7 +135,7 @@
/* Text overlay */
.home-text {
z-index: 5;
z-index: var(--z-content);
grid-area: 9/1 / span 6 / span 20;
width: 100%;
justify-self: center;