From 1bcfadf6c8d133dd64f75618f3f34355adcc66cc Mon Sep 17 00:00:00 2001 From: Anon Ray Date: Thu, 27 Jun 2013 23:26:14 +0530 Subject: [PATCH] Fix overflow of long entries in home page --- static/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/style.css b/static/css/style.css index 4f3b71d..79cb657 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -7,7 +7,7 @@ h2 { font-size: 1.2em; } .page { margin: 2em auto; width: 35em; border: 5px solid #ccc; padding: 0.8em; background: white; } .entries { list-style: none; margin: 0; padding: 0; } -.entries li { margin: 0.8em 1.2em; } +.entries li { margin: 0.8em 1.2em; word-wrap: break-word; } .entries li h2 { margin-left: -1em; } .add-entry { font-size: 0.9em; border-bottom: 1px solid #ccc; } .add-entry dl { font-weight: bold; } -- 1.7.10.4