From 4c64cbed1480bd77ea7646c38c54e923ca0ff504 Mon Sep 17 00:00:00 2001 From: Pradeep Gowda Date: Sun, 1 Mar 2015 19:33:41 -0500 Subject: [PATCH] Remove `text-justify` on `p#content` Justified text is arguably harder to read than left-aligned text. --- public/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/css/style.css b/public/css/style.css index b09a2f4..4e7b98a 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -162,7 +162,7 @@ pre .EscapeSequence #content.page { width:680px; min-height:800px; padding-left:20px; } #content h1 { font-size:20pt; letter-spacing:1px; color:rgba(0,0,0,.75); } #content h2 { font-size:16pt; letter-spacing:1px; color:rgba(0,0,0,.7); margin-top:40px; } - #content p { text-align:justify; color: #1D1D1D; margin: 5pt 0pt; } + #content p { color: #1D1D1D; margin: 5pt 0pt; } #content a { color:#CEDAE9; text-decoration:none; } #content a:hover { color:#fff; } #content ul { padding-left:20px; }