diff --git a/static/style.css b/static/style.css index a44c886..0855d81 100644 --- a/static/style.css +++ b/static/style.css @@ -11,3 +11,14 @@ body { border: #CCC 1px solid; border-radius: 0.2em; } + +body { + display: grid; +} + +#hello { + grid-column: 1 / 3; +} +#h-day, #h-time, #h-place { + grid-column: 1 / 3; +} diff --git a/templates/vote.html b/templates/vote.html index 0813e86..debea0f 100644 --- a/templates/vote.html +++ b/templates/vote.html @@ -8,14 +8,14 @@ -

Hallo, {{ session.user.email }}!

-

+

Hallo, {{ session.user.email }}!

+

{{ meet.title }} -

-

+

+

An welchem Tag? -

-
+

+ {% for d in dates %}
{{ d.display or d.date }} @@ -23,10 +23,12 @@
{% endfor %} -

+

+
+

Zu welcher Zeit? -

-
+

+ {% for d in times %}
{{ d.display or d.time }} @@ -34,10 +36,12 @@
{% endfor %} -

+

+
+

An welchem Ort? -

-
+

+ {% for d in places %}
{{ d.name }} @@ -45,6 +49,8 @@
{% endfor %} +
+