diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/assets/style.css | 8 | ||||
-rwxr-xr-x | www/scripts/build.sh | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/www/assets/style.css b/www/assets/style.css index 04bc72e..55f5223 100644 --- a/www/assets/style.css +++ b/www/assets/style.css | |||
@@ -10,14 +10,18 @@ footer * { | |||
10 | 10 | ||
11 | main { | 11 | main { |
12 | h1 { | 12 | h1 { |
13 | margin: auto auto; | 13 | margin: 1.5rem auto; |
14 | width: fit-content; | 14 | width: fit-content; |
15 | } | 15 | } |
16 | h2 { | 16 | h2 { |
17 | margin: 2.5rem 0 0 -0.7rem; | 17 | margin: 1.5rem 0 1.5rem -0.7rem; |
18 | } | 18 | } |
19 | } | 19 | } |
20 | 20 | ||
21 | abbr { | ||
22 | cursor: help; | ||
23 | } | ||
24 | |||
21 | blockquote { | 25 | blockquote { |
22 | color: gray; | 26 | color: gray; |
23 | font-size: 1.2rem; | 27 | font-size: 1.2rem; |
diff --git a/www/scripts/build.sh b/www/scripts/build.sh index cec10fd..f5f50c9 100755 --- a/www/scripts/build.sh +++ b/www/scripts/build.sh | |||
@@ -3,7 +3,7 @@ | |||
3 | set -e | 3 | set -e |
4 | 4 | ||
5 | # Executable command for markdown | 5 | # Executable command for markdown |
6 | markdown_bin="markdown -f fencedcode,autolink,alphalist,autolink,footnote" | 6 | markdown_bin="markdown -f fencedcode,autolink,alphalist,autolink,footnote,definitionlist" |
7 | 7 | ||
8 | # Directory for input/output | 8 | # Directory for input/output |
9 | input_dir=${input_dir:?ENV \"input_dir\" is not set} | 9 | input_dir=${input_dir:?ENV \"input_dir\" is not set} |