From 8962879681b1a1caba15c3d5191bc9619993758a Mon Sep 17 00:00:00 2001 From: Andrew Cady Date: Sat, 23 Oct 2021 16:34:43 -0400 Subject: add css style --- EndoForge/Makefile | 2 +- EndoForge/style.css | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 EndoForge/style.css diff --git a/EndoForge/Makefile b/EndoForge/Makefile index 2501da9..46f1af4 100644 --- a/EndoForge/Makefile +++ b/EndoForge/Makefile @@ -34,7 +34,7 @@ install: [ -e "$(SSH_LIB_DIR)"/AuthorizedKeysCommand ] || $(SUDO) ln -s -t /etc/ssh "$(SSH_LIB_DIR)"/AuthorizedKeysCommand README.html: README.md - pandoc -t html $< > $@ + pandoc -s --css style.css -t html $< -o $@ test: make -C test diff --git a/EndoForge/style.css b/EndoForge/style.css new file mode 100644 index 0000000..6a09746 --- /dev/null +++ b/EndoForge/style.css @@ -0,0 +1,21 @@ +th { + text-align: left; +} + +body { + max-width: 800px; + margin-left:auto; + margin-right:auto; + padding-left: 1em; + padding-right: 1em; +} + +table { + width: 100%; +} + +.indexcollastmod { + white-space: nowrap; + padding-left: 0.75em; + padding-right: 0.75em; +} -- cgit v1.2.3