From ae0c91d7190abe04c3644003a219b7f2959fccee Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Mon, 20 Jun 2022 15:35:03 -0400 Subject: [PATCH] Cap content width at something reasonable --- Reader/read.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Reader/read.css b/Reader/read.css index 35c562f..732301c 100644 --- a/Reader/read.css +++ b/Reader/read.css @@ -16,6 +16,13 @@ body { background-color: var(--background-color); } +@media (min-width: 696px) { + body { + width: 672px; + margin: 12px auto; + } +} + a { color: var(--tint-color); }