css: max line length
authorMichael Meffie <mmeffie@sinenomine.net>
Fri, 9 May 2014 13:53:52 +0000 (09:53 -0400)
committerMichael Meffie <mmeffie@sinenomine.net>
Fri, 9 May 2014 13:53:52 +0000 (09:53 -0400)
Set the maximum line length to about 80 characters to make the wiki
easier to read on wide windows. The excessively long lines are hard
to read, and people have been putting line breaks in the pages
because of this.  Instead of sprinkling <br/> (or markdown lines
ending in two spaces) everywhere, use css to make the lines a
reasonable length.

local.css

index e310628..a500d84 100644 (file)
--- a/local.css
+++ b/local.css
@@ -169,7 +169,9 @@ pre {
   box-shadow: 0px 0px 2px #1a1a1a; }
 
 #content, #comments, #footer {
-  margin: 1em 2em; }
+  margin: 1em 2em 1em 2em;
+  max-width: 80em;
+}
 
 #pageinfo {
   border-color: #cccccc; }