Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion doc/supplemental-ui/css/site-extra.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
/* Overall code block styling - Modern dark theme */
/* ========================================
TOC SIDEBAR - Push to right edge
======================================== */
aside.toc.sidebar {
margin-left: 0;
margin-right: auto;
}

/* ========================================
MAIN CONTENT - Expand to fill space
======================================== */
@media screen and (min-width: 1024px) {
article.doc {
max-width: 1600px;
flex-grow: 1;
}

/* Alternative: if the parent uses grid */
.body {
grid-template-columns: auto 1fr auto;
}
}

/* ========================================
CODE BLOCK STYLING - Modern dark theme
======================================== */

.listingblock .content pre,
.listingblock .content pre.highlight,
pre.highlight code.language-c\+\+ {
Expand Down
Loading