From 57e08284a63cd464b5bc0aad51a1ba2c3536e1e4 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 20 Apr 2017 18:03:10 -0700 Subject: [PATCH] doc, html: switch to a columnar layout for a very wide window If we open in a very wide window, split the text into columns so it can actually be conveniently read. Also, change the body margin to 8px, as that seems to be the more common browser default. Signed-off-by: H. Peter Anvin --- doc/nasmdoc.css | 19 +++++++++++++++++-- doc/rdsrc.pl | 5 +++-- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/doc/nasmdoc.css b/doc/nasmdoc.css index af095273..f989f37b 100644 --- a/doc/nasmdoc.css +++ b/doc/nasmdoc.css @@ -61,11 +61,26 @@ ul.index { color: inherit; } } +@media only screen and (min-width: 90em) { + /* For a very wide screen, go to a columnar layout */ + div.contents { + -webkit-column-count: 2; + -moz-column-count: 2; + column-count: 2; + } +} +@media only screen and (min-width: 135em) { + div.contents { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + } +} @media screen { /* Setting an explicit margin to keep the navbar from moving */ body { padding: 0; - margin: 10px; + margin: 8px; } /* Link styles */ @@ -94,7 +109,7 @@ ul.index { ul.navbar { display: block; position: sticky; - top: 10px; + top: 8px; width: 100%; margin: 0; padding: 0; diff --git a/doc/rdsrc.pl b/doc/rdsrc.pl index bc066584..129bb085 100644 --- a/doc/rdsrc.pl +++ b/doc/rdsrc.pl @@ -971,11 +971,12 @@ sub html_preamble { print "

", $metadata{'title'}, "

\n"; print '', $metadata{'subtitle'}, "\n"; print "\n"; + print "
\n"; } sub html_postamble { - # Closing tags - print "\n\n"; + # Common closing tags + print "
\n\n\n"; } sub html_index {