diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-07-29 12:35:17 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-29 12:37:01 -0700 |
commit | a27623dad06aa810a07cdea227b0f40d336cec9d (patch) | |
tree | cb818d63bf349a63f19d0a3a2410b5ce21218437 | |
parent | 4687f5d3b42b04cf270c53e5bf77941d5743d03a (diff) | |
download | subsurface-a27623dad06aa810a07cdea227b0f40d336cec9d.tar.gz |
Printing: make better use of the space in Two Dives template
There was way too much wasted space and the profile ended up being
unnecessarily tiny.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | printing_templates/Two Dives.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/printing_templates/Two Dives.html b/printing_templates/Two Dives.html index 986f119dd..5dba74303 100644 --- a/printing_templates/Two Dives.html +++ b/printing_templates/Two Dives.html @@ -46,7 +46,7 @@ overflow: hidden; max-width: 25%; min-width: 25%; - margin: 1.5%; + margin: 0.5%; float: left; -webkit-box-sizing: border-box; box-sizing: border-box; @@ -58,7 +58,7 @@ overflow: hidden; max-width: 100%; min-width: 100%; - margin: 1.5%; + margin: 0.5%; float: left; -webkit-box-sizing: border-box; box-sizing: border-box; @@ -73,14 +73,17 @@ } .diveProfile { - width: 37%; + width: 48%; height: 95%; - margin: 1.5%; + margin-left: 0%; + margin-right: 0%; + margin-bottom: 0%; + margin-top: 0.5%; float: right; } .diveDetails { - width: 92%; + width: 98.5%; float: left; } |