diff --git a/documentation/fonts/Cantarell-Bold.otf b/documentation/fonts/Cantarell-Bold.otf new file mode 100644 index 0000000..3fb64a8 Binary files /dev/null and b/documentation/fonts/Cantarell-Bold.otf differ diff --git a/documentation/fonts/Cantarell-Regular.otf b/documentation/fonts/Cantarell-Regular.otf new file mode 100644 index 0000000..b28baa1 Binary files /dev/null and b/documentation/fonts/Cantarell-Regular.otf differ diff --git a/documentation/fonts/Museo500-Regular.otf b/documentation/fonts/Museo500-Regular.otf new file mode 100644 index 0000000..da52e9c Binary files /dev/null and b/documentation/fonts/Museo500-Regular.otf differ diff --git a/documentation/fonts/Museo_Slab.otf b/documentation/fonts/Museo_Slab.otf new file mode 100644 index 0000000..84ceaca Binary files /dev/null and b/documentation/fonts/Museo_Slab.otf differ diff --git a/documentation/pandoc.css b/documentation/pandoc.css index fa0b691..eed1da8 100644 --- a/documentation/pandoc.css +++ b/documentation/pandoc.css @@ -1,3 +1,30 @@ +@font-face { + font-family: 'Museo500'; + src: url(fonts/Museo500-Regular.otf); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'MuseoSlab'; + src: url(fonts/Museo_Slab.otf); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Cantarell'; + src: local('Cantarell'), local('Cantarell Regular'), + url(fonts/Cantarell-Regular.otf); +} + +@font-face { + font-family: 'Cantarell'; + font-weight: bold; + src: local('Cantarell'), local('Cantarell Bold'), local('Cantarell-Bold'), + url(fonts/Cantarell-Bold.otf); +} + body { margin: auto; padding-right: 1em; @@ -7,13 +34,18 @@ body { border-right: 1px solid black; */ color: black; line-height: 140%; - color: #000; - font-family: sans-serif; + color: #000; + font-family: Cantarell, Roboto, 'Droid Sans', Ubuntu, 'DejaVu Sans', Arial, sans-serif; } + +h1, h2, h3, h4 { + font-family: 'Museo500', 'Roboto'; +} + pre { border: 1px dotted gray; background-color: #ececec; - color: #111; + color: #000; padding: 0.5em; } code { @@ -27,9 +59,9 @@ h1, h2, h3, h4, h5 { color: #000; } h1 { - padding-top: 1em; - margin-top: 2em; - border-top: 1px dotted black; + padding-top: 1em; + margin-top: 4em; + border-top: 2px solid black; font-size: 200%; } @@ -62,6 +94,15 @@ h1.title { border: none; } +h2.author { + text-align: right; +} + +div#TOC { + padding: 20px; + background: #ccc; +} + dt code { font-weight: bold; }