Add TimeSheetGenerator schema compatible page

This commit is contained in:
Joscha 2024-05-05 03:39:40 +02:00
parent 722c05f983
commit 8f9d304761
6 changed files with 265 additions and 2 deletions

31
src/endpoints/tsg.css Normal file
View file

@ -0,0 +1,31 @@
:root {
font-family: Arial, FreeSans, sans-serif;
}
form {
max-width: 210mm; /* DIN-A 4 */
margin: 0 auto;
padding: 0 5mm 5mm;
border: 2px solid black;
border-radius: 0 8mm 0 8mm;
}
h1 {
color: #009682;
text-align: center;
}
textarea {
display: block;
width: 100%;
height: 14lh;
margin: 1mm 0;
}
button {
display: block;
margin: 4mm auto 0;
font-size: 1.5em;
}
#info.success {
color: #070;
}
#info.error {
color: #900;
}