|
441 | 441 | border-radius: 0 8px 8px 0; |
442 | 442 | } |
443 | 443 |
|
| 444 | + /* ========================================================================== |
| 445 | + AT A GLANCE (Compact List) |
| 446 | + ========================================================================== */ |
| 447 | + .glance-list { |
| 448 | + display: grid; |
| 449 | + grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); |
| 450 | + gap: 8px 32px; |
| 451 | + margin-top: 12px; |
| 452 | + } |
| 453 | + |
| 454 | + .glance-item { |
| 455 | + display: flex; |
| 456 | + align-items: baseline; |
| 457 | + gap: 10px; |
| 458 | + font-size: 0.95rem; |
| 459 | + line-height: 1.6; |
| 460 | + } |
| 461 | + |
| 462 | + .glance-icon { |
| 463 | + color: var(--accent-cyan); |
| 464 | + font-size: 1.1em; |
| 465 | + flex-shrink: 0; |
| 466 | + width: 1.2em; |
| 467 | + text-align: center; |
| 468 | + } |
| 469 | + |
444 | 470 | /* ========================================================================== |
445 | 471 | TABLE OF CONTENTS |
446 | 472 | ========================================================================== */ |
@@ -1430,13 +1456,28 @@ <h1>Lexicon</h1> |
1430 | 1456 |
|
1431 | 1457 | <div class="highlight-box"> |
1432 | 1458 | <strong>Lexicon at a glance</strong> |
1433 | | - <ul> |
1434 | | - <li>Semantic syntax theme system for C# in Visual Studio 2026 with the Codist extension.</li> |
1435 | | - <li>11 semantic categories: types, data, control flow, exceptions, literals, and more.</li> |
1436 | | - <li>Designed to support code review, debugging, and onboarding to unfamiliar C# codebases.</li> |
1437 | | - <li>10 coordinated dark themes sharing the same semantic vocabulary.</li> |
1438 | | - <li>Recommended starting point: the Lexicon Twilight theme, with Beacon available as a high-contrast option.</li> |
1439 | | - </ul> |
| 1459 | + <div class="glance-list"> |
| 1460 | + <div class="glance-item"> |
| 1461 | + <span class="glance-icon">❖</span> |
| 1462 | + <span>Semantic syntax theme system for C# in Visual Studio 2026.</span> |
| 1463 | + </div> |
| 1464 | + <div class="glance-item"> |
| 1465 | + <span class="glance-icon">☰</span> |
| 1466 | + <span>11 semantic categories: types, data, control flow, exceptions, and more.</span> |
| 1467 | + </div> |
| 1468 | + <div class="glance-item"> |
| 1469 | + <span class="glance-icon">◎</span> |
| 1470 | + <span>Designed to support code review, debugging, and onboarding.</span> |
| 1471 | + </div> |
| 1472 | + <div class="glance-item"> |
| 1473 | + <span class="glance-icon">◑</span> |
| 1474 | + <span>10 coordinated dark themes sharing the same semantic vocabulary.</span> |
| 1475 | + </div> |
| 1476 | + <div class="glance-item"> |
| 1477 | + <span class="glance-icon">★</span> |
| 1478 | + <span>Start with <strong>Twilight</strong>; use <strong>Beacon</strong> for high contrast.</span> |
| 1479 | + </div> |
| 1480 | + </div> |
1440 | 1481 | </div> |
1441 | 1482 |
|
1442 | 1483 | <h3 id="theme-preview">Theme Preview</h3> |
|
0 commit comments