diff options
-rw-r--r-- | EndoForge/Makefile | 2 | ||||
-rw-r--r-- | EndoForge/style.css | 21 |
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 | ||
36 | README.html: README.md | 36 | README.html: README.md |
37 | pandoc -t html $< > $@ | 37 | pandoc -s --css style.css -t html $< -o $@ |
38 | 38 | ||
39 | test: | 39 | test: |
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 @@ | |||
1 | th { | ||
2 | text-align: left; | ||
3 | } | ||
4 | |||
5 | body { | ||
6 | max-width: 800px; | ||
7 | margin-left:auto; | ||
8 | margin-right:auto; | ||
9 | padding-left: 1em; | ||
10 | padding-right: 1em; | ||
11 | } | ||
12 | |||
13 | table { | ||
14 | width: 100%; | ||
15 | } | ||
16 | |||
17 | .indexcollastmod { | ||
18 | white-space: nowrap; | ||
19 | padding-left: 0.75em; | ||
20 | padding-right: 0.75em; | ||
21 | } | ||