diff options
author | iximeow <me@iximeow.net> | 2018-07-09 20:43:17 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2018-07-09 20:43:17 -0700 |
commit | 2d351cdadd66effd8c8f49c3bbd6fb5360df52bb (patch) | |
tree | 4060c2fda295879380e871304ae52c273aa1c508 | |
parent | 520a4ab39d8e6364fb2a993525d7288d4d54248e (diff) |
add max-width and padding to styling template
-rw-r--r-- | content_template.pandoc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content_template.pandoc b/content_template.pandoc index 8293006..8b90413 100644 --- a/content_template.pandoc +++ b/content_template.pandoc @@ -13,6 +13,7 @@ .content { margin: auto; width: 80% + max-width: 50em; } /* colors pulled from my current terminal config. applicable for aha-rendered ANSI text */ @@ -31,6 +32,8 @@ overflow: auto; /* terminal background */ background: #171717; + padding-left: 0.5em; + padding-right: 0.5em; } /* pandoc's default styling colors pre, but we don't need that */ |