diff options
Diffstat (limited to 'printing_templates/two_dives.html')
-rw-r--r-- | printing_templates/two_dives.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/printing_templates/two_dives.html b/printing_templates/two_dives.html index 62502272b..0c8eec14c 100644 --- a/printing_templates/two_dives.html +++ b/printing_templates/two_dives.html @@ -2,7 +2,7 @@ <head> <style> body { - background-color: white; + {{ print_options.grayscale }}; padding: 0px; margin: 0px; font-size: {{ template_options.font_size }}vw; @@ -15,6 +15,10 @@ float: left; } + #body_div { + background-color: {{ template_options.color1 }}; + } + .mainContainer { width: 96%; height: 50%; @@ -63,7 +67,7 @@ } .fieldTitle { - background-color: #CfC7C5; + background-color: {{ template_options.color2 }}; overflow: hidden; padding:0; } @@ -103,6 +107,7 @@ </style> </head> <body data-numberofdives = 2> +<div id="body_div"> {% block main_rows %} {% for dive in dives %} <div class="mainContainer"> @@ -217,5 +222,6 @@ {% endblock %} <div id="footer"> <div> +</div> </body> </html> |