feat(glossary): add step 21 smart navigation
All checks were successful
SMOKE / smoke (push) Successful in 13s
CI / build-and-anchors (push) Successful in 1m4s
CI / build-and-anchors (pull_request) Successful in 35s

This commit is contained in:
2026-04-26 13:03:45 +02:00
parent 689619d14d
commit 9f88112aca
45 changed files with 1020 additions and 112 deletions

View File

@@ -117,6 +117,24 @@ header{
opacity 120ms var(--ease-out);
}
/* ===== SiteNav : lien actif ===== */
/* ===== SiteNav : lien actif ===== */
.site-nav a[aria-current="page"],
.site-nav a.is-active,
.site-nav a[data-active="true"]{
position: relative;
color: #00d9ff;
border-color: rgba(0,217,255,0.42);
background:
radial-gradient(circle at 50% 50%, rgba(0,217,255,0.16), transparent 68%),
rgba(0,217,255,0.075);
box-shadow:
0 0 0 1px rgba(0,217,255,0.12),
0 0 14px rgba(0,217,255,0.18),
inset 0 0 14px rgba(0,217,255,0.045);
opacity: 1;
}
.site-nav a:hover{
transform: translateY(-1px);
background: rgba(0,217,255,.08);