From 967d8ae4e6fcd229bc3c76e012118b48a978f0dd Mon Sep 17 00:00:00 2001 From: Alexandre Vicenzi Date: Mon, 25 May 2020 22:34:28 +0200 Subject: Add pagination --- static/css/hyde.css | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) (limited to 'static/css') diff --git a/static/css/hyde.css b/static/css/hyde.css index 4dc0c71..6ee3e65 100644 --- a/static/css/hyde.css +++ b/static/css/hyde.css @@ -67,6 +67,10 @@ html { bottom: 0; width: 18rem; } + + footer { + padding-left: 18rem; + } } /* Sidebar links */ @@ -206,3 +210,66 @@ ul.posts { .social-icons a:focus { text-decoration: none !important; } + +.pagination { + justify-content: center; + display: flex; + margin: 1em 0; + padding: 0; +} + +.pagination ul { + margin: 0; + padding: 0; + list-style-type: none; +} + +.pagination li { + display: block; + float: left; + margin-left: -1px; +} + +.pagination li a { + display: block; + margin-bottom: 0.25em; + padding: 0.5em 1em; + font-size: 14px; + font-weight: bold; + line-height: 1.5; + text-align: center; + text-decoration: none; + color: #49757a; + border: 1px solid #49757a; + border-radius: 0; +} + +.pagination li a:hover { + color: #fff; + background: rgba(67, 118, 122, 0.75); +} + +.pagination li.active a { + color: #fff; + background: #49757a; +} + +.pagination li.disabled a { + color: rgba(67, 118, 122, 0.5); + pointer-events: none; + cursor: not-allowed; +} + +.pagination li:first-child { + margin-left: 0; +} + +.pagination li:first-child a { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +.pagination li:last-child a { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} -- cgit v1.2.1