From 99cd6e0c99cb948c0cb310068f352a7640566371 Mon Sep 17 00:00:00 2001 From: arcanine Date: Fri, 20 Oct 2017 11:50:02 -0400 Subject: [PATCH] Adds CSS sans-serif font family --- jrnl/exporters.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jrnl/exporters.py b/jrnl/exporters.py index 881f3781..47064774 100644 --- a/jrnl/exporters.py +++ b/jrnl/exporters.py @@ -74,6 +74,7 @@ def to_html(journal): html += "\t\t\tp{margin:0;}\n" html += "\t\t\th2{margin:0}\n" html += "\t\t\tbody{\n" + html += "\t\t\t\tfont-family: sans-serif;\n" html += "\t\t\t\tbackground: #252a32;\n" html += "\t\t\t\tmargin-top:5%;\n" html += "\t\t\t\tmargin-bottom:5%;\n"