Files
training/.codex/skills/hallmark/references/components/n3-side-rail.md
2026-07-28 19:31:07 +08:00

15 lines
536 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### N3 · Side-rail
A thin vertical strip on the left edge — wordmark rotated, plus 23 dot-indicators for sections. Editorial / portfolio energy.
*Use when:* the page is long and section-numbered.
*Don't confuse with:* N1 Top wordmark (which is horizontal).
```html
<nav class="nav-rail">
<p class="wordmark vertical">Studio</p>
<ul class="dots"><li></li><li></li><li></li></ul>
</nav>
```
```css
.nav-rail { position: fixed; left: 0; top: 0; bottom: 0; width: 3rem; padding: var(--space-md); writing-mode: vertical-rl; }
```