CSS: no background color when printing
[web.git] / ralf / _sass / _layout.scss
index cde604e034ed50209c74e7bdd5672481a06e9925..a4c47385c1395b361d85bd8fb9b02d234617662f 100644 (file)
@@ -14,7 +14,7 @@ body { /* This centers us in the page, and handles the "too wide" case */
     padding-top: $outer-margin; /* distance of top to window border */
     padding-bottom: $outer-margin; /* distance of page-bottom to window border */
     border-left: solid $text-color 1px;
-    min-height: calc(100vh - #{$outer-margin});
+    min-height: calc(100vh - #{2*$outer-margin});
 }
 
 /* The content of the frame */
@@ -138,6 +138,9 @@ body { /* This centers us in the page, and handles the "too wide" case */
 
 /* Printing */
 @media print {
+    body {
+        background-color: white;
+    }
     body, #-frame, #-content {
         margin: 0;
         padding: 0;