From 3c6957467fc401648369905efae98c0a228af752 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 19 Mar 2023 18:57:48 +0100 Subject: Update project link display --- themes/conspiracy/assets/css/style.css | 44 +++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) (limited to 'themes/conspiracy/assets/css/style.css') diff --git a/themes/conspiracy/assets/css/style.css b/themes/conspiracy/assets/css/style.css index f03f4ac..01854ec 100644 --- a/themes/conspiracy/assets/css/style.css +++ b/themes/conspiracy/assets/css/style.css @@ -214,12 +214,36 @@ main.cards { background-color: #1f232a; } +.pagination-links { + width: 100%; + display: flex; + justify-content: center; + align-items: stretch; +} + +.pagination-links > a { + background-color: #272c35; + box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2); + padding: 10px 20px 10px 20px; +} + +.arrow-right { + display: inline-block; + width: 0; + height: 0; + border-top: .3rem solid transparent; + border-bottom: .3rem solid transparent; + border-left: .3rem solid ; + margin-bottom: .05rem; + margin-left: 5px; +} + .card { background-color: #272c35; box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2); padding: 30px 20px 30px 20px; margin-top: 50px; - + margin-bottom: 30px; } .card > .links { @@ -239,6 +263,24 @@ main.cards { text-align: center; } +main > .links { + margin: 20px 0px 40px 0px; + border: 0.5px dotted rgba(255, 255, 255, 0.3); + border-left: none; + border-right: none; + width: calc(100%); + max-width: calc(100%); + display: flex; + flex-flow: row wrap; + justify-content: space-around; +} + +main > .links > a { + padding: 10px 10px 10px 10px; + flex-grow: 1; + text-align: center; +} + /* un-mess-up rst2html output */ .card > .summary > .document, .card > .summary > .document > p { display: inline; -- cgit