Skip to content

Commit 91b6150

Browse files
Add compact list layout for 'Lexicon at a glance' section with icons
1 parent 6ca44f4 commit 91b6150

File tree

1 file changed

+48
-7
lines changed

1 file changed

+48
-7
lines changed

lexicon.html

Lines changed: 48 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,32 @@
441441
border-radius: 0 8px 8px 0;
442442
}
443443

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+
444470
/* ==========================================================================
445471
TABLE OF CONTENTS
446472
========================================================================== */
@@ -1430,13 +1456,28 @@ <h1>Lexicon</h1>
14301456

14311457
<div class="highlight-box">
14321458
<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>
14401481
</div>
14411482

14421483
<h3 id="theme-preview">Theme Preview</h3>

0 commit comments

Comments
 (0)