From c6c9140bd8eda10de11bbfe886ef6f76f316b95d Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 25 Feb 2026 14:36:40 -0600 Subject: [PATCH] now that I'm using it, have the TOC be a thing off to the side --- pages/static/css/dungeon.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pages/static/css/dungeon.css b/pages/static/css/dungeon.css index e28cf5d..5c429b5 100644 --- a/pages/static/css/dungeon.css +++ b/pages/static/css/dungeon.css @@ -66,11 +66,17 @@ pre { } .toc { - column-count: 3; - column-gap: 20px; - font-size: 10pt; + float: right; + margin: 10px; + padding: 0 15px; + background: #EEE; + border: 1px solid #CCC; } .toc ul, .toc ol { padding-left: 10px; } + +.toc label { + white-space: nowrap; +}