diff options
author | Ben Burwell <ben@benburwell.com> | 2018-09-29 12:27:40 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2018-09-29 12:27:40 -0400 |
commit | c492a43ae41de4c27db64ef9d7806db37c7f96f6 (patch) | |
tree | 1015292487fd09618d53b9c5c8dacdd442b45292 | |
parent | 4289f4e97fed7c674e4032327a0f319cf308a8fd (diff) |
Apply some trivial CSS
-rw-r--r-- | _layouts/master.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/_layouts/master.html b/_layouts/master.html index 97d3cf5..81005df 100644 --- a/_layouts/master.html +++ b/_layouts/master.html @@ -6,6 +6,19 @@ <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="alternate" type="application/atom+xml" title="benburwell.com blog posts" href="/feed.xml"> <meta name="author" content="Ben Burwell"> + <style> + body { + max-width: 40rem; + margin: 3rem auto; + color: #242424; + } + h1, h2, h3, h4, h5, h6 { + font-family: sans-serif; + } + pre { + overflow: auto; + } + </style> </head> <body> {{ content }} |