[bijiben] css: margin-left = 0



commit 140c7643fbaaabdbcaaa1c49f3d1259fbf82193b
Author: Pierre-Yves Luyten <py luyten fr>
Date:   Wed Apr 17 22:50:58 2013 +0200

    css: margin-left = 0
    
    Also, don't use units when css values = 0

 data/Default.css | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/data/Default.css b/data/Default.css
index cdf1c70..64be4bf 100644
--- a/data/Default.css
+++ b/data/Default.css
@@ -1,6 +1,6 @@
 body {
   margin-top:      -2em;
-  margin-left:      2em;
+  margin-left:      0;
   margin-right:     2em;
   margin-bottom:    8em;
   word-wrap:        break-word;
@@ -16,15 +16,15 @@ body {
 }
 
 ul {
-  margin-top :      0em;
-  margin-bottom:    0em;
+  margin-top :      0;
+  margin-bottom:    0;
   line-height:      2.0em;
-  padding:          0em;
+  padding:          0;
 }
 
 ol {
-  margin-top :      0em;
-  margin-bottom:    0em;
+  margin-top :      0;
+  margin-bottom:    0;
   line-height:      2.0em;
-  padding:          0em;
+  padding:          0;
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]