From 740393bc18cbedb15baf43f48d8f3f0f2eb5ab9f Mon Sep 17 00:00:00 2001 From: Bat Date: Wed, 25 Jul 2018 14:41:48 +0200 Subject: [PATCH] Better style for pagination links --- po/plume.pot | 6 ++++++ static/main.css | 11 +++++++++++ 2 files changed, 17 insertions(+) diff --git a/po/plume.pot b/po/plume.pot index c61456af..197db640 100644 --- a/po/plume.pot +++ b/po/plume.pot @@ -330,3 +330,9 @@ msgid "One article in this blog" msgid_plural "{{ count }} articles in this blog" msgstr[0] "" msgstr[1] "" + +msgid "Previous page" +msgstr "" + +msgid "Next page" +msgstr "" diff --git a/static/main.css b/static/main.css index d523d8cd..985081ea 100644 --- a/static/main.css +++ b/static/main.css @@ -540,3 +540,14 @@ form.new-post input[type="submit"]:hover { background: #DADADA; } min-height: 80%; } } + +/*== Pagination ==*/ +.pagination { + display: flex; + width: 100%; + justify-content: space-evenly; +} + +.pagination > * { + padding: 2em; +}