new design

This commit is contained in:
stefan 2025-06-05 23:43:56 +02:00
parent a35798c033
commit 72b5551377
3 changed files with 10 additions and 7 deletions

View File

@ -29,12 +29,14 @@ class NennungView {
h1 { +"Online-Nennen" }
// Tournament description
div(classes = "tournament-info text-center mb-4") {
div(classes = "tournament-info mb-3") {
h2 { +turnier.name }
p { +turnier.datum }
p { +"Turnier-Nr.: ${turnier.number}" }
}
form(
action = "/nennung/${turnier.number}/submit",
method = FormMethod.post,

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -2,7 +2,7 @@
/* Tournament list container */
.tournament-list {
max-width: 900px;
max-width: 1080px;
margin: 0 auto;
padding: 1rem 0;
}
@ -203,10 +203,11 @@
/* Tournament info for registration page */
.tournament-info {
margin-bottom: 3rem;
max-width: 840px;
margin: 0 auto;
text-align: center;
position: relative;
padding-bottom: 2rem;
padding-bottom: 1.5rem;
}
.tournament-info:after {
@ -229,14 +230,14 @@
}
.tournament-info p {
color: var(--light-text);
color: var(--text-color);
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
/* Registration form styles */
.registration-form {
max-width: 800px;
max-width: 960px;
margin: 0 auto;
}
@ -364,7 +365,7 @@
/* Confirmation page styles */
.confirmation-box {
max-width: 700px;
max-width: 840px;
margin: 0 auto;
text-align: center;
background-color: var(--container-bg);