diff options
author | Steph Enders <steph@senders.io> | 2023-06-27 12:36:55 -0400 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2023-06-27 12:36:55 -0400 |
commit | 3f0a43eaee4b511c3ca134425f0958dd6bd8435c (patch) | |
tree | 7c1ef122534c0f8713d5737f9de51616f465aafc /templates | |
parent | e722d78f820d98d735fa9ae6e7c6b1099d1e3b48 (diff) |
Set default width and root favicon
Diffstat (limited to 'templates')
-rw-r--r-- | templates/head-common.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/head-common.html b/templates/head-common.html index c06fc18..10a2167 100644 --- a/templates/head-common.html +++ b/templates/head-common.html @@ -1,8 +1,14 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> +<style> + article { + /* include a max width in case of CSS failure */ + max-width: 50em; + } +</style> <link rel="stylesheet" href="/index.css"> <link rel="license" href="#license"> <link rel="icon" - href="favicon.ico"> + href="/favicon.ico"> |