summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@cryptonomic.net>2021-10-23 16:34:43 -0400
committerAndrew Cady <d@cryptonomic.net>2021-10-23 16:34:43 -0400
commit8962879681b1a1caba15c3d5191bc9619993758a (patch)
tree3ec3efa62795eaa08a4b2bd3b221a4a24251bffa
parent3fce89550ff6ecf38f05caa872acd72195ed7a14 (diff)
add css style
-rw-r--r--EndoForge/Makefile2
-rw-r--r--EndoForge/style.css21
2 files changed, 22 insertions, 1 deletions
diff --git a/EndoForge/Makefile b/EndoForge/Makefile
index 2501da9..46f1af4 100644
--- a/EndoForge/Makefile
+++ b/EndoForge/Makefile
@@ -34,7 +34,7 @@ install:
34 [ -e "$(SSH_LIB_DIR)"/AuthorizedKeysCommand ] || $(SUDO) ln -s -t /etc/ssh "$(SSH_LIB_DIR)"/AuthorizedKeysCommand 34 [ -e "$(SSH_LIB_DIR)"/AuthorizedKeysCommand ] || $(SUDO) ln -s -t /etc/ssh "$(SSH_LIB_DIR)"/AuthorizedKeysCommand
35 35
36README.html: README.md 36README.html: README.md
37 pandoc -t html $< > $@ 37 pandoc -s --css style.css -t html $< -o $@
38 38
39test: 39test:
40 make -C test 40 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 @@
1th {
2 text-align: left;
3}
4
5body {
6 max-width: 800px;
7 margin-left:auto;
8 margin-right:auto;
9 padding-left: 1em;
10 padding-right: 1em;
11}
12
13table {
14 width: 100%;
15}
16
17.indexcollastmod {
18 white-space: nowrap;
19 padding-left: 0.75em;
20 padding-right: 0.75em;
21}