chore: stage changes before history rewrite

This commit is contained in:
2026-07-07 11:28:18 +08:00
parent a619b919be
commit 137304090a
13 changed files with 670 additions and 83 deletions

View File

@@ -40,6 +40,29 @@ a:hover { text-decoration: underline; }
.lang-option:hover { background: var(--bg); color: var(--primary); }
.lang-option.active { color: var(--primary); font-weight: 600; }
.showcase-lang-bar { position: fixed; top: 1rem; right: 1.5rem; z-index: 100; }
.nav-hamburger { display: none; background: none; border: none; font-size: 1.25rem; cursor: pointer; padding: .25rem .5rem; color: var(--text); }
@media (max-width: 640px) {
.nav-hamburger { display: block; }
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
border-bottom: 1px solid var(--border);
box-shadow: 0 4px 12px rgba(0,0,0,.08);
flex-direction: column;
align-items: flex-start;
padding: .5rem 1.5rem;
gap: .75rem;
z-index: 50;
}
.nav-links.open { display: flex; }
.lang-switcher { position: static; }
.lang-dropdown { position: static; box-shadow: none; border: none; }
}
/* Container */
.container { max-width: 960px; margin: 2rem auto; padding: 0 1.5rem; }