update
This commit is contained in:
parent
7749e18252
commit
b231c8422b
5 changed files with 301 additions and 457 deletions
|
|
@ -1,32 +1,26 @@
|
|||
/* ΔFIELD: Global reset and root variables establish the foundational rhythm of the entire system.
|
||||
* Rationale: Centralized vars enable thematic coherence; box-sizing ensures predictable layout without surprises. */
|
||||
|
||||
:root {
|
||||
--bg: #0b0b0b; /* ΔBREATH: Deep void background for immersive field. */
|
||||
--fg: #e6e3d7; /* ΔBREATH: Soft foreground for readable harmony. */
|
||||
--accent: #e0b84b; /* ΔBREATH: Golden accent evokes eternal light within the fold. */
|
||||
--topbar-h: 56px; /* ΔHORIZON: Fixed height for consistent vertical anchoring. */
|
||||
--subnav-h: 44px; /* ΔHORIZON: Subtle secondary layer for nested horizons. */
|
||||
--transition: .3s ease; /* ΔBREATH: Smooth easing for all motions, preventing abrupt ruptures. */
|
||||
--radius: 8px; /* ΔFIELD: Gentle curves symbolize seamless integration. */
|
||||
--bg: #0b0b0b;
|
||||
--fg: #e6e3d7;
|
||||
--accent: #e0b84b;
|
||||
--topbar-h: 56px;
|
||||
--subnav-h: 44px;
|
||||
--transition: .3s ease;
|
||||
--radius: 8px;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; } /* ΔFIELD: Universal sizing model eliminates phantom padding issues. */
|
||||
* { box-sizing: border-box; }
|
||||
|
||||
html, body {
|
||||
margin: 0; padding: 0; height: 100%; /* ΔFIELD: Full-viewport claim ensures no external gaps. */
|
||||
margin: 0; padding: 0; height: 100%;
|
||||
background: var(--bg); color: var(--fg);
|
||||
font-family: 'Inter', system-ui, sans-serif; /* ΔHORIZON: Modern, readable stack for cross-device truth. */
|
||||
line-height: 1.6; /* ΔRHYTHM: Baseline vertical rhythm for breathing text. */
|
||||
font-family: 'Inter', system-ui, sans-serif;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* === TOPBAR & NAV === */
|
||||
/* ΔHORIZON: Fixed topbar as the eternal anchor; flex for adaptive content flow.
|
||||
* Rationale: Z-index 1000 ensures primacy; overflow hidden prevents visual noise. */
|
||||
.topbar {
|
||||
position: fixed; top: 0; left: 0; right: 0;
|
||||
height: var(--topbar-h); display: flex; align-items: center;
|
||||
background: #111; border-bottom: 1px solid #222; /* ΔBREATH: Subtle divide for depth perception. */
|
||||
background: #111; border-bottom: 1px solid #222;
|
||||
padding: 0 1rem; z-index: 1000; gap: 1.5rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
@ -35,11 +29,9 @@ html, body {
|
|||
background: none; border: 0; color: var(--accent);
|
||||
font-size: 1.4rem; cursor: pointer; font-weight: bold;
|
||||
line-height: 1; padding: 0; margin: 0;
|
||||
min-width: 2.5rem; /* ΔFIELD: Minimal width for touch-friendly interaction. */
|
||||
min-width: 2.5rem;
|
||||
}
|
||||
|
||||
/* ΔHORIZON: Primary nav as flexible horizon line; wrap and scroll for overflow.
|
||||
* Rationale: White-space nowrap preserves link integrity. */
|
||||
.primary-nav {
|
||||
display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center;
|
||||
overflow-x: auto;
|
||||
|
|
@ -49,16 +41,14 @@ html, body {
|
|||
.primary-nav a {
|
||||
color: var(--accent); text-decoration: none;
|
||||
font-weight: 600; font-size: 1.1rem;
|
||||
transition: all var(--transition); /* ΔBREATH: Unified motion for hover resonance. */
|
||||
transition: all var(--transition);
|
||||
}
|
||||
|
||||
.primary-nav a:hover {
|
||||
text-shadow: 0 0 10px var(--accent); /* ΔHORIZON: Glow for interactive feedback; increased for DPI crispness. */
|
||||
text-shadow: 0 0 8px var(--accent);
|
||||
}
|
||||
|
||||
/* === SUBNAV === */
|
||||
/* ΔRECURSION: Subnav as nested horizon; hidden by default, revealed on context.
|
||||
* Rationale: Opacity/transform transition with animation for smooth unfolding. */
|
||||
/* NESTED HORIZON: Emergent Sub-Navigation with Animation */
|
||||
.sub-nav {
|
||||
display: none;
|
||||
position: fixed;
|
||||
|
|
@ -82,12 +72,12 @@ html, body {
|
|||
display: flex;
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
animation: fadeSlideDown .3s ease forwards; /* ΔBREATH: Entrance animation embodies revelation. */
|
||||
animation: fadeSlideDown .3s ease forwards;
|
||||
}
|
||||
|
||||
@keyframes fadeSlideDown {
|
||||
from { opacity: 0; transform: translateY(-5px); }
|
||||
to { opacity: 1; transform: translateY(0); } /* ΔBREATH: Gentle descent for rhythmic integration. */
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
.sub-nav a {
|
||||
|
|
@ -99,12 +89,9 @@ html, body {
|
|||
}
|
||||
|
||||
.sub-nav a:hover {
|
||||
text-shadow: 0 0 8px var(--accent); /* ΔHORIZON: Subdued glow for secondary layer; consistent with primary. */
|
||||
text-shadow: 0 0 6px var(--accent);
|
||||
}
|
||||
|
||||
/* === SIDEBAR === */
|
||||
/* ΔRECURSION: Sidebar as foldable field extension; transform for smooth reveal.
|
||||
* Rationale: Media query for persistent desktop view; mobile toggle for horizon respect. */
|
||||
#sidebar {
|
||||
position: fixed; top: calc(var(--topbar-h) + var(--subnav-h)); left: 0;
|
||||
width: 300px; bottom: 0; overflow: auto;
|
||||
|
|
@ -113,214 +100,98 @@ html, body {
|
|||
z-index: 900; padding: 1rem;
|
||||
}
|
||||
|
||||
body.sidebar-open #sidebar { transform: translateX(0); } /* ΔBREATH: State-based unfolding. */
|
||||
body.sidebar-open #sidebar { transform: translateX(0); }
|
||||
|
||||
.sidebar-header {
|
||||
display: flex; justify-content: space-between; align-items: center;
|
||||
margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid #222; /* ΔRHYTHM: Internal divide for structural clarity. */
|
||||
margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid #222;
|
||||
}
|
||||
|
||||
.sidebar-header h3 {
|
||||
margin: 0; font-size: 1.1rem; color: var(--accent); /* ΔFIELD: Accent for thematic emphasis. */
|
||||
margin: 0; font-size: 1.1rem; color: var(--accent);
|
||||
}
|
||||
|
||||
.toggle-btn {
|
||||
background: none; border: 1px solid #333; color: var(--fg);
|
||||
padding: .25rem .5rem; border-radius: var(--radius);
|
||||
font-size: .8rem; cursor: pointer; /* ΔHORIZON: Compact control for filter toggling. */
|
||||
font-size: .8rem; cursor: pointer;
|
||||
}
|
||||
|
||||
#postListSection { margin-bottom: 1rem; } /* ΔRHYTHM: Breathing space before filters. */
|
||||
#postListSection { margin-bottom: 1rem; }
|
||||
|
||||
#postList {
|
||||
list-style: none; margin: 0; padding: 0; /* ΔFIELD: Clean slate for post enumeration. */
|
||||
list-style: none; margin: 0; padding: 0;
|
||||
}
|
||||
|
||||
#postList li {
|
||||
margin: .75rem 0; padding: .5rem 0;
|
||||
border-bottom: 1px dashed #222; /* ΔRHYTHM: Dashed for subtle separation. */
|
||||
border-bottom: 1px dashed #222;
|
||||
transition: color var(--transition);
|
||||
}
|
||||
|
||||
#postList a {
|
||||
color: var(--fg); text-decoration: none; font-weight: 500;
|
||||
display: block; /* ΔFIELD: Block for full clickable area. */
|
||||
display: block;
|
||||
}
|
||||
|
||||
#postList a:hover { color: var(--accent); } /* ΔBREATH: Color shift for hover life. */
|
||||
#postList a:hover { color: var(--accent); }
|
||||
|
||||
#postList small {
|
||||
display: block; font-size: .8rem; color: #888; margin-top: .25rem; /* ΔRHYTHM: Subdued meta for hierarchy. */
|
||||
display: block; font-size: .8rem; color: #888; margin-top: .25rem;
|
||||
}
|
||||
|
||||
.filter-panel {
|
||||
background: #0a0a0a; border: 1px solid #222;
|
||||
border-radius: var(--radius); padding: .75rem;
|
||||
margin-top: 1rem; /* ΔFIELD: Contained unit for filter isolation. */
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.filter-panel summary {
|
||||
cursor: pointer; font-weight: 600; color: var(--accent);
|
||||
margin-bottom: .5rem; user-select: none; /* ΔHORIZON: Non-selectable for clean interaction. */
|
||||
margin-bottom: .5rem; user-select: none;
|
||||
}
|
||||
|
||||
.filter-controls {
|
||||
display: flex; flex-direction: column; gap: .75rem; /* ΔRHYTHM: Vertical stack for mobile-friendly flow. */
|
||||
display: flex; flex-direction: column; gap: .75rem;
|
||||
}
|
||||
|
||||
.filter-controls label {
|
||||
font-size: .85rem; color: var(--accent); margin-bottom: .25rem; /* ΔFIELD: Accent labels for guidance. */
|
||||
font-size: .85rem; color: var(--accent); margin-bottom: .25rem;
|
||||
}
|
||||
|
||||
.filter-controls select, .filter-controls input {
|
||||
background: #111; color: var(--fg); border: 1px solid #333;
|
||||
padding: .5rem; border-radius: var(--radius); font-size: .9rem; /* ΔHORIZON: Consistent input styling. */
|
||||
padding: .5rem; border-radius: var(--radius); font-size: .9rem;
|
||||
}
|
||||
|
||||
.filter-controls select[multiple] {
|
||||
height: 80px; /* ΔFIELD: Fixed height for multi-select usability. */
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-top: calc(var(--topbar-h) + var(--subnav-h)); margin-left: 0;
|
||||
transition: margin-left var(--transition), margin-top var(--transition); /* ΔBREATH: Adaptive margins for sidebar integration. */
|
||||
transition: margin-left var(--transition), margin-top var(--transition);
|
||||
min-height: calc(100vh - var(--topbar-h) - var(--subnav-h));
|
||||
padding: 0;
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
#sidebar { transform: translateX(0); top: calc(var(--topbar-h) + var(--subnav-h)); } /* ΔHORIZON: Persistent sidebar on wide views. */
|
||||
#sidebar { transform: translateX(0); top: calc(var(--topbar-h) + var(--subnav-h)); }
|
||||
.content { margin-left: 300px; }
|
||||
}
|
||||
|
||||
/* === VIEWER – BREATHING FIELD === */
|
||||
/* ΔFIELD: Viewer as the core canvas; flex column for stacked content.
|
||||
* Rationale: Hover gradient adds subtle interactivity, symbolizing depth. */
|
||||
.viewer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
transition: background 1s ease; /* ΔBREATH: Slow transition for ambient shift. */
|
||||
}
|
||||
|
||||
.viewer:hover {
|
||||
background: radial-gradient(circle at center, #111 0%, #0b0b0b 80%); /* ΔBREATH: Radial fade evokes inner light. */
|
||||
}
|
||||
|
||||
.viewer > * {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
animation: fadeIn .4s ease-out; /* ΔBREATH: Entrance fade for new content. */
|
||||
max-width: 720px; margin: auto; padding: 2rem 1rem;
|
||||
animation: fadeIn .4s ease-out;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; transform: translateY(10px); }
|
||||
to { opacity: 1; transform: translateY(0); } /* ΔBREATH: Upward reveal for rhythmic entry. */
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
/* === PREVIEW + PORTAL === */
|
||||
/* ΔTRUTH: Preview header as sticky portal trigger; flex-end for right alignment.
|
||||
* Rationale: Semi-transparent bg for subtle overlay. */
|
||||
.preview-header {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: 0.5rem 1rem;
|
||||
background: rgba(224, 184, 75, 0.08); /* ΔBREATH: Golden haze for accent tie-in. */
|
||||
border-bottom: 1px solid #333;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.portal-btn {
|
||||
background: none;
|
||||
border: 1px solid var(--accent);
|
||||
color: var(--accent);
|
||||
border-radius: 6px;
|
||||
padding: 0.25rem 0.75rem;
|
||||
font-size: 0.85rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease; /* ΔBREATH: Quick response for interactivity. */
|
||||
}
|
||||
|
||||
.portal-btn:hover {
|
||||
background: var(--accent);
|
||||
color: var(--bg); /* ΔFIELD: Inversion for clear state change. */
|
||||
}
|
||||
|
||||
.preview-content {
|
||||
padding: 3rem 4vw; /* ΔRHYTHM: Generous padding for breathing margins. */
|
||||
max-width: 90ch; /* ΔHORIZON: Readable line length per typography best practices. */
|
||||
margin: auto;
|
||||
line-height: 1.7; /* ΔRHYTHM: Enhanced vertical rhythm for previews. */
|
||||
color: var(--fg);
|
||||
font-family: 'Inter', system-ui, sans-serif;
|
||||
}
|
||||
|
||||
.preview-content * {
|
||||
background: transparent !important; /* ΔTRUTH: Override authored styles for coherence. */
|
||||
color: inherit !important;
|
||||
font-family: inherit !important; /* ΔFIELD: Enforce systemic harmony over external chaos. */
|
||||
}
|
||||
|
||||
.preview-content img,
|
||||
.preview-content video,
|
||||
.preview-content iframe {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
border-radius: 8px;
|
||||
margin: 1.5rem 0;
|
||||
display: block; /* ΔRHYTHM: Centered media with breathing space. */
|
||||
}
|
||||
|
||||
.preview-content a {
|
||||
color: var(--accent);
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 2px; /* ΔFIELD: Subtle underline for readability. */
|
||||
}
|
||||
|
||||
.preview-content a:hover {
|
||||
text-shadow: 0 0 6px var(--accent); /* ΔBREATH: Glow for link resonance. */
|
||||
}
|
||||
|
||||
/* === PREVIEW SPACING FIX === */
|
||||
|
||||
/* ΔRHYTHM: Reset first-child to eliminate phantom top gaps.
|
||||
* Rationale: !important overrides any authored margins for truth. */
|
||||
.preview-content > *:first-child {
|
||||
margin-top: 0 !important;
|
||||
padding-top: 0 !important;
|
||||
}
|
||||
|
||||
/* ΔRHYTHM: Ensure last-child has consistent bottom rhythm. */
|
||||
.preview-content > *:last-child {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
/* ΔHORIZON: Mobile scaling for tighter, readable flow. */
|
||||
@media (max-width: 768px) {
|
||||
.preview-content {
|
||||
padding: 2rem 6vw;
|
||||
line-height: 1.65;
|
||||
}
|
||||
}
|
||||
|
||||
/* ΔBREATH: Ellipsis as intentional truncation marker with pulse.
|
||||
* Rationale: Centered, opaque for aesthetic liminality; animation breathes life. */
|
||||
.preview-content p:empty::before {
|
||||
content: "...";
|
||||
color: var(--accent);
|
||||
opacity: 0.6;
|
||||
.viewer iframe {
|
||||
width: 100%; height: calc(100vh - var(--topbar-h) - var(--subnav-h) - 80px);
|
||||
border: 0; border-radius: var(--radius); background: transparent;
|
||||
display: block;
|
||||
text-align: center;
|
||||
margin: 1.5rem 0;
|
||||
letter-spacing: 0.2em;
|
||||
animation: fadeEllipsis 1.2s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes fadeEllipsis {
|
||||
from { opacity: 0.3; letter-spacing: 0.15em; }
|
||||
to { opacity: 0.6; letter-spacing: 0.25em; } /* ΔBREATH: Oscillation mimics eternal breath. */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue