From f9d2d81f945c7d6fe531cd6ed70292cc90b8940b Mon Sep 17 00:00:00 2001 From: Filip Lajszczak Date: Sun, 12 Dec 2021 15:31:26 +0000 Subject: doc: apply nice css to html docs. --- Makefile.am | 5 +++++ doc/manual.css | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 doc/manual.css diff --git a/Makefile.am b/Makefile.am index d4b2a78..e1b6765 100644 --- a/Makefile.am +++ b/Makefile.am @@ -90,6 +90,11 @@ AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)" info_TEXINFOS = doc/haunt.texi doc_haunt_TEXINFOS = doc/fdl-1.3.texi + +AM_MAKEINFOHTMLFLAGS = \ + --css-ref=https://dthompson.us/css/dthompson.css \ + --css-include=doc/manual.css + dvi: # Don't build dvi docs EXTRA_DIST += \ diff --git a/doc/manual.css b/doc/manual.css new file mode 100644 index 0000000..b433c4b --- /dev/null +++ b/doc/manual.css @@ -0,0 +1,21 @@ +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} -- cgit v1.2.3