调整skills的位置

This commit is contained in:
马宝龙
2026-07-28 19:31:07 +08:00
parent e93aeee0fb
commit 8681433518
115 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
### F1 · Bento grid
Asymmetric grid of 815 tiles in mixed spans (1×1, 2×1, 1×2, 2×2). Visual rhythm via size.
*Use when:* multiple equally-valid entry points; SaaS feature page.
*Don't confuse with:* F2 Sticky-scroll (which stacks vertically with sticky pacing).
```html
<section class="bento">
<article class="cell span-2x2"></article>
<article class="cell span-1x1"></article>
<article class="cell span-2x1"></article>
</section>
```
```css
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 12rem; gap: var(--space-md); }
.span-2x2 { grid-column: span 2; grid-row: span 2; }
.span-2x1 { grid-column: span 2; }
.span-1x2 { grid-row: span 2; }
@media (max-width: 56rem) { .bento { grid-template-columns: repeat(2, 1fr); } }
```