Introduce UX viewport + templates; add UX manager for swappable/stackable views; refactor loader/search into view factories; extend site.css with viewport helpers.

This commit is contained in:
Jordan Wages 2025-09-16 21:04:20 -05:00
commit 85212a12fb
3 changed files with 219 additions and 131 deletions

View file

@ -5,3 +5,9 @@
.fade-visible { opacity: 1; visibility: visible; }
.fade-hidden { opacity: 0; visibility: hidden; }
/* Viewport + layers */
.ux-viewport { position: relative; }
.ux-root { min-height: 40vh; }
.ux-overlays { position: absolute; inset: 0; pointer-events: none; }
.ux-view { width: 100%; }
.ux-view--overlay { position: absolute; inset: 0; z-index: 10; pointer-events: auto; }