Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2021-12-27 14:44:31 +01:00
parent e9770ce018
commit 8faff699dd
2 changed files with 11 additions and 4 deletions

View File

@@ -163,13 +163,13 @@
{{ workout.date|date:"Y-m-d" }} {{ workout.starttime|date:"H:i" }}
<div>
{% if workout.name != '' %}
<h2>
<h3>
{{ workout.name }}
</h2>
</h3>
{% else %}
<h2>
<h3>
No Name
</h2>
</h3>
{% endif %}
</div>
<div class="columns">

View File

@@ -332,6 +332,13 @@ th.rotate > div > span {
margin: 0px;
}
.divlines h3 {
font-size: 1.2em;
font-weight: bold;
padding: 0px;
margin: 0px;
}
.whiteborder {
border: solid 2px #aaa;
}