|
300 | 300 | gap:1px;background:var(--border);border:1px solid var(--border); |
301 | 301 | border-radius:6px;overflow:hidden; |
302 | 302 | } |
| 303 | +/* Fixed-column variant for grids whose card count divides evenly, |
| 304 | + so no empty cells show the gap background. */ |
| 305 | +.card-grid.g3{grid-template-columns:repeat(3,1fr)} |
303 | 306 | .card{ |
304 | 307 | background:var(--bg);padding:18px 16px;transition:background 0.15s; |
305 | 308 | } |
|
378 | 381 | /* ─── RESPONSIVE ────────────────────────────────────────────── */ |
379 | 382 | @media(max-width:780px){ |
380 | 383 | .feat-grid{grid-template-columns:1fr 1fr} |
| 384 | + .card-grid.g3{grid-template-columns:1fr 1fr} |
381 | 385 | .hero-stats{grid-template-columns:repeat(2,1fr)} |
382 | 386 | .col2{grid-template-columns:1fr;gap:12px} |
383 | 387 | .col2-side{flex-direction:row;flex-wrap:wrap;border-top:0} |
|
388 | 392 | } |
389 | 393 | @media(max-width:500px){ |
390 | 394 | .feat-grid{grid-template-columns:1fr} |
391 | | - .card-grid{grid-template-columns:1fr} |
| 395 | + .card-grid,.card-grid.g3{grid-template-columns:1fr} |
392 | 396 | .hero-stats{grid-template-columns:1fr 1fr} |
393 | 397 | .foot-inner{grid-template-columns:1fr} |
394 | 398 | } |
@@ -605,7 +609,7 @@ <h2 class="sec-title">Bring your <em>own model</em></h2> |
605 | 609 | <h2 class="sec-title">25+ <em>built-in</em> tools</h2> |
606 | 610 | <p class="sec-lede">Everything the agent needs — files, shell, search, code intelligence, and delegation — with zero configuration.</p> |
607 | 611 |
|
608 | | - <div class="card-grid"> |
| 612 | + <div class="card-grid g3"> |
609 | 613 | <div class="card"><h4>Files & edits</h4><p><code>read</code> · <code>write</code> · <code>edit</code> · <code>apply_patch</code> · <code>list_dir</code> · <code>find_files</code></p></div> |
610 | 614 | <div class="card"><h4>Shell</h4><p><code>bash</code> · <code>bash_output</code> · <code>kill_shell</code> — foreground & background</p></div> |
611 | 615 | <div class="card"><h4>Search</h4><p><code>grep</code> · <code>glob</code> · <code>session_search</code></p></div> |
|
0 commit comments