Main content panel for signed-in app pages. Glassy floating container with user welcome header and flexible content area. Pairs with Sidebar (App) to create complete application layout.
Content container optimized for
signed-in application UI with dark/glassy surfaces.
Automatically activated inside
.app-shell
scope. Pairs with Sidebar (App) for complete layout.
Glassy content panel with header and content area. Displays user welcome message and flexible content space.
Shell App Typography uses Inter sans-serif exclusively for modern, readable product UI on glassy backgrounds.
This content area demonstrates all typography styles working together. Notice the softer colors and comfortable spacing.
The .app-shell scope ensures consistent typography across all signed-in application interfaces.
The content area is scrollable when content exceeds the container height.
All typography inherits from .app-shell scope automatically.
For the complete signed-in application layout with Sidebar + Content Container working together, see App Shell (Signed-in).
Copy-ready HTML for the content container. Replace dynamic content (user name) but keep CSS classes intact.
<!-- Content Container (App) -->
<div class="content-container-app">
<!-- Header -->
<div class="content-container-app__header">
<h1 class="t-h1">Welcome <?= htmlspecialchars($user['first_name']) ?></h1>
</div>
<!-- Content Area -->
<div class="content-container-app__content">
<!-- Your page content goes here -->
<p class="t-body">Active feature content...</p>
</div>
</div>
Content Container styles are defined in:
/assets/css/content-container-app.css
Includes: Layout structure, header separator styling, content area scrolling behavior, responsive spacing, dark mode support, and integration with .app-shell glassy surfaces.