summaryrefslogtreecommitdiffstats
path: root/printing_templates/One Dive.html
diff options
context:
space:
mode:
Diffstat (limited to 'printing_templates/One Dive.html')
-rw-r--r--printing_templates/One Dive.html30
1 files changed, 20 insertions, 10 deletions
diff --git a/printing_templates/One Dive.html b/printing_templates/One Dive.html
index 40c02b395..ff0d8cd40 100644
--- a/printing_templates/One Dive.html
+++ b/printing_templates/One Dive.html
@@ -20,6 +20,7 @@
box-sizing: border-box;
border:max(1px, 0.1vw);
border-style:solid;
+ border-color: {{ template_options.color5 }};
}
td {
@@ -57,6 +58,7 @@
box-sizing: border-box;
border:max(1px, 0.1vw);
border-style:solid;
+ border-color: {{ template_options.color5 }};
float: left;
}
@@ -75,6 +77,11 @@
.fieldTitle {
background-color: {{ template_options.color2 }};
overflow: hidden;
+ color: {{ template_options.color3 }};
+ }
+
+ .fieldData {
+ color: {{ template_options.color4 }};
}
.table_class {
@@ -91,6 +98,7 @@
.textArea {
line-height: {{ template_options.line_spacing }};
+ color: {{ template_options.color4 }};
max-height: 19vh;
overflow: hidden;
}
@@ -111,7 +119,7 @@
<td class="fieldTitle">
<h1> Dive No. </h1>
</td>
- <td>
+ <td class="fieldData">
<h1> {{ dive.number }} </h1>
</td>
</tr>
@@ -119,14 +127,15 @@
<td class="fieldTitle">
<h1> Date </h1>
</td>
- <td><h1> {{ dive.date }} </h1>
+ <td class="fieldData">
+ <h1> {{ dive.date }} </h1>
</td>
</tr>
<tr>
<td class="fieldTitle">
<h1> Location </h1>
</td>
- <td>
+ <td class="fieldData">
<h1> {{ dive.location }} </h1>
</td>
</tr>
@@ -134,7 +143,7 @@
<td class="fieldTitle">
<h1> Max depth </h1>
</td>
- <td>
+ <td class="fieldData">
<h1> {{ dive.depth }} </h1>
</td>
</tr>
@@ -142,7 +151,7 @@
<td class="fieldTitle">
<h1> Duration </h1>
</td>
- <td>
+ <td class="fieldData">
<h1> {{ dive.duration }} </h1>
</td>
</tr>
@@ -152,7 +161,7 @@
<td class="fieldTitle">
<h1> Time. </h1>
</td>
- <td>
+ <td class="fieldData">
<h1> {{ dive.time }} </h1>
</td>
</tr>
@@ -160,14 +169,15 @@
<td class="fieldTitle">
<h1> Air Temp. </h1>
</td>
- <td><h1> {{ dive.airTemp }} </h1>
+ <td class="fieldData">
+ <h1> {{ dive.airTemp }} </h1>
</td>
</tr>
<tr>
<td class="fieldTitle">
<h1> Water Temp. </h1>
</td>
- <td>
+ <td class="fieldData">
<h1> {{ dive.waterTemp }} </h1>
</td>
</tr>
@@ -175,7 +185,7 @@
<td class="fieldTitle">
<h1> Buddy </h1>
</td>
- <td>
+ <td class="fieldData">
<h1> {{ dive.buddy }} </h1>
</td>
</tr>
@@ -183,7 +193,7 @@
<td class="fieldTitle">
<h1> Dive Master </h1>
</td>
- <td>
+ <td class="fieldData">
<h1> {{ dive.divemaster }} </h1>
</td>
</tr>