docs: replace all CardGroup/Card blocks with animated bullet points across all 50 docs pages (#648)

- Fix What's new → link in Info banner (now a proper <a> tag, always clickable)
- Replace 4-stat CardGroup on index with inline premium stats row
- Convert every <CardGroup>/<Card> block site-wide to markdown bullet lists:
  content sections → bold-title bullets with sub-bullets, nav cards → [Title](href) — description
- Add cursor-animated list item hover effects to custom.css:
  green inset left border, subtle background tint, marker color change on hover
- Affects index, getting-started, quickstart, concepts, modules, faq, architecture,
  installation, cookbook, glossary, learning-more, explorer-setup, cli-setup,
  community, contributing-guide, governance, citation, project-license,
  all integrations pages, and all 20+ reference module pages
This commit is contained in:
Mohd Kaif
2026-06-17 23:18:40 +05:30
committed by GitHub
parent 0f9a651527
commit 25289023fe
50 changed files with 587 additions and 1522 deletions
+41
View File
@@ -109,6 +109,47 @@ nav a,
transition: color 0.15s ease !important;
}
/* ============================================================
BULLET POINTS — cursor-animated hover (premium feel)
============================================================ */
ul > li,
ol > li {
position: relative;
transition:
background-color 0.18s ease,
box-shadow 0.18s ease,
color 0.15s ease;
border-radius: 4px;
cursor: default;
}
ul > li:hover,
ol > li:hover {
background-color: rgba(16, 185, 129, 0.06);
box-shadow: inset 3px 0 0 #10B981;
color: rgba(255, 255, 255, 0.95);
}
/* Animate the bullet marker green on hover */
ul > li:hover::marker,
ol > li:hover::marker {
color: #10B981;
}
/* Slide-in left accent bar for nested lists */
ul > li > ul > li:hover,
ol > li > ul > li:hover {
background-color: rgba(16, 185, 129, 0.04);
box-shadow: inset 2px 0 0 rgba(16, 185, 129, 0.6);
}
/* Strong text inside list items — subtle green tint on parent hover */
ul > li:hover > strong,
ol > li:hover > strong {
color: #10B981;
transition: color 0.15s ease;
}
/* ============================================================
HIDE THEME TOGGLE (moon / sun emoji button)
============================================================ */