mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-20 18:16:30 +03:00
Homepage UX improvements from design critique
- Add floating bottom section nav (appears after hero, hides at footer) - Fix hero split comparison to default 50/50 instead of 70/30 - Remove duplicate "Works with" badges from Install section - Periodic table: restore compact elements, add inline hover tooltips - Truncate command descriptions in Commands section for scannability - Collapse older changelog entries behind "View older releases" - Add GitHub star count (13.3k) next to repo link - Fix meta theme-color to match light mode - Reduce hero top padding, update section 03 subtitle - Clean up footer: remove redundant tagline and anchor links - Fix divider line accumulation in changelog and FAQ sections - Center glass terminal vertically in viewport Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
1f484d0f5d
commit
8d1937d3c9
+48
-10
@@ -93,8 +93,8 @@
|
||||
}
|
||||
|
||||
.manual-cmd-desc {
|
||||
font-size: 1rem;
|
||||
line-height: 1.6;
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.5;
|
||||
color: var(--color-charcoal);
|
||||
margin: 0;
|
||||
}
|
||||
@@ -123,10 +123,11 @@
|
||||
color: var(--color-ink);
|
||||
}
|
||||
|
||||
/* Right: The Terminal Stack (Sticky) */
|
||||
/* Right: The Terminal Stack (Sticky, vertically centered) */
|
||||
.glass-terminal-wrapper {
|
||||
position: sticky;
|
||||
top: var(--spacing-xl);
|
||||
top: 50vh;
|
||||
transform: translateY(-50%);
|
||||
height: calc(100vh - var(--spacing-xl) * 2);
|
||||
max-height: 800px;
|
||||
min-height: 500px;
|
||||
@@ -742,10 +743,9 @@
|
||||
|
||||
.changelog-entry {
|
||||
padding: var(--spacing-md) 0;
|
||||
border-bottom: 1px solid var(--color-mist);
|
||||
}
|
||||
|
||||
.changelog-entry:first-child {
|
||||
.changelog-entry + .changelog-entry {
|
||||
border-top: 1px solid var(--color-mist);
|
||||
}
|
||||
|
||||
@@ -788,6 +788,48 @@
|
||||
color: var(--color-ink);
|
||||
}
|
||||
|
||||
/* Changelog: collapsible older entries */
|
||||
.changelog-older {
|
||||
margin-top: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.changelog-older-toggle {
|
||||
font-family: var(--font-body);
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
color: var(--color-accent);
|
||||
padding: var(--spacing-md) 0;
|
||||
cursor: pointer;
|
||||
list-style: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.changelog-older-toggle::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.changelog-older-toggle::before {
|
||||
content: '+';
|
||||
font-size: 1.25rem;
|
||||
font-weight: 300;
|
||||
transition: transform 0.3s var(--ease-out);
|
||||
}
|
||||
|
||||
.changelog-older[open] .changelog-older-toggle::before {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.changelog-older-toggle:hover {
|
||||
color: var(--color-accent-hover);
|
||||
}
|
||||
|
||||
.changelog-older-entries {
|
||||
animation: faqFadeIn 0.3s var(--ease-out);
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
FAQ SECTION
|
||||
============================================ */
|
||||
@@ -808,10 +850,6 @@
|
||||
border-bottom: 1px solid var(--color-mist);
|
||||
}
|
||||
|
||||
.faq-item:first-child {
|
||||
border-top: 1px solid var(--color-mist);
|
||||
}
|
||||
|
||||
.faq-question {
|
||||
font-family: var(--font-display);
|
||||
font-size: 1.125rem;
|
||||
|
||||
Reference in New Issue
Block a user