another finetuning

This commit is contained in:
Jörg Henke
2024-01-10 09:49:01 +01:00
parent 5b296d39e9
commit c4615765a5
3 changed files with 11 additions and 7 deletions

View File

@ -7,7 +7,7 @@ plugins {
apply plugin: 'io.spring.dependency-management'
group = 'de.jottyfan'
version = '1.5.0'
version = '1.5.1'
description = """timetrack"""

View File

@ -301,7 +301,7 @@ body {
.emphgray {
color: #5e5c64;
background-image: linear-gradient(to left, #959595, #cecece);
background-image: linear-gradient(to left, #959595, #e6e6e6);
}
.unround-border {
@ -309,6 +309,10 @@ body {
font-weight: bolder;
}
.border-frame {
border: 1px solid;
}
.round-border {
border-radius: 8px;
font-weight: bolder;

View File

@ -17,15 +17,15 @@
<div class="container">
<div class="row">
<div class="col-8"><span class="spanlabel">Start:</span></div>
<div class="col-4"><span class="emphgreen round-border" th:text="${sum.start}"></span></div>
<div class="col-4"><span class="emphgreen round-border border-frame" th:text="${sum.start}"></span></div>
<div class="col-8"><span class="spanlabel">Ende:</span></div>
<div class="col-4"><span class="emphgreen round-border" th:text="${sum.end}"></span></div>
<div class="col-4"><span class="emphgreen round-border border-frame" th:text="${sum.end}"></span></div>
<div class="col-8"><span class="spanlabel">Arbeitszeit total:</span></div>
<div class="col-4"><span class="emphblue round-border" th:text="${sum.total}"></span></div>
<div class="col-4"><span class="emphblue round-border border-frame" th:text="${sum.total}"></span></div>
<div class="col-8"><span class="spanlabel">Pausezeit total:</span></div>
<div class="col-4"><span class="emphorange round-border" th:text="${sum.pause}"></span></div>
<div class="col-4"><span class="emphorange round-border border-frame" th:text="${sum.pause}"></span></div>
<div class="col-8"><span class="spanlabel">Überstunden:</span></div>
<div class="col-4"><span class="emphred round-border" th:text="${sum.overdue}"></span></div>
<div class="col-4"><span class="emphred round-border border-frame" th:text="${sum.overdue}"></span></div>
</div>
</div>
</div>