git » blitiri » commit 453ef6e

Use a fixed width in the default style sheet

author Leandro Lucarella
2008-08-07 16:10:25 UTC
committer Alberto Bertogli
2008-08-08 22:53:19 UTC
parent f874dc7a70fd66a320882bcc1fd71e8324918f2c

Use a fixed width in the default style sheet

blitiri.cgi +4 -3

diff --git a/blitiri.cgi b/blitiri.cgi
index f13e59a..829a8cd 100755
--- a/blitiri.cgi
+++ b/blitiri.cgi
@@ -131,16 +131,17 @@ default_css = """
 body {
 	font-family: sans-serif;
 	font-size: small;
+	width: 52em;
 }
 
 div.content {
-	width: 50%;
+	width: 96%;
 }
 
 h1 {
 	font-size: large;
 	border-bottom: 2px solid #99F;
-	width: 60%;
+	width: 100%;
 	margin-bottom: 1em;
 }
 
@@ -183,7 +184,7 @@ hr {
 	height: 2px;
 	border: 0;
 	background-color: #99F;
-	width: 60%;
+	width: 100%;
 }
 
 div.footer {