From b61ced73b636e4fb278304fce2dfa0d62d714771 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sun, 29 Oct 2017 00:12:15 -0400 Subject: [PATCH] :Restrict index body width to 40em --- style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/style.css b/style.css index d3031c7..43d4747 100644 --- a/style.css +++ b/style.css @@ -163,6 +163,13 @@ body.index .content, images */ min-height: 750px; padding-right: 1.5em; + + /* don't let text get too wide */ + max-width: 40em; + margin: auto; +} +#cgit .content { + max-width: none; } body.index.no-sidebar .content, .body-index.no-sidebar .content {