diff --git a/faerun_calendar/static/faerun_calendar/css/main.css b/faerun_calendar/static/faerun_calendar/css/main.css index b963eb7..444f766 100644 --- a/faerun_calendar/static/faerun_calendar/css/main.css +++ b/faerun_calendar/static/faerun_calendar/css/main.css @@ -60,9 +60,9 @@ div.calendar { } div.calendar-events { - display: flex; - flex-flow: row wrap; - justify-content: space-around; + column-width: 725px; + column-rule: 1px solid black; + column-gap: 25px; } div.month { @@ -86,9 +86,11 @@ div.event-gm, div.event-suggested { border: 1px solid black; padding: 20px; - margin: 20px; + margin: auto; + margin-bottom: 15px; border-radius: 10px; - width: 100%; + max-width: 700px; + break-inside: avoid; } div.event { @@ -136,3 +138,8 @@ p.calendar-error { p.calendar-info { font-size: 200%; } + +body > div { + max-width: 1600px; + margin: auto; +} diff --git a/main/templates/main/pagetemplate.html b/main/templates/main/pagetemplate.html index a7d92e4..e9c2e3f 100644 --- a/main/templates/main/pagetemplate.html +++ b/main/templates/main/pagetemplate.html @@ -18,21 +18,23 @@ - +
+ - {% block content %} - {% endblock %} + {% block content %} + {% endblock %} +
\ No newline at end of file