added template and instructions to upload-page

This commit is contained in:
mkrieger 2024-11-14 10:41:50 +01:00
parent 81e906c01d
commit d12ac4189f
4 changed files with 60 additions and 11 deletions

View file

@ -320,3 +320,30 @@ tr:nth-child(even) td {
width: 100px; /* Noch kleinere Breite auf sehr kleinen Bildschirmen */
}
}
.template-info {
background-color: #f9f9f9;
padding: 1em;
border-radius: 8px;
margin-bottom: 1.5em;
text-align: center;
}
.template-info p {
margin: 0.5em 0;
}
.template-download {
display: inline-block;
padding: 0.5em 1em;
margin-top: 0.5em;
background-color: #007aff;
color: white;
border-radius: 4px;
text-decoration: none;
transition: background-color 0.2s ease;
}
.template-download:hover {
background-color: #005bb5;
}