diff --git a/page/start/index.php b/page/start/index.php index aa089da..68592da 100644 --- a/page/start/index.php +++ b/page/start/index.php @@ -485,6 +485,51 @@ +
+
+ + get("recommendations_title") ?> + +
+
+ + + get("recommendations_note") ?> +
+
+
diff --git a/page/start/style.css b/page/start/style.css index aab99be..20f5e74 100644 --- a/page/start/style.css +++ b/page/start/style.css @@ -603,6 +603,64 @@ a.box:hover { +/* SECTION: RECOMMENDATIONS */ +.card-list { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-evenly; + align-items: stretch; + gap: 1rem; +} + +.card-list .card { + flex-basis: calc(50% - 0.5rem); + flex-grow: 1; + + display: flex; + flex-direction: row; + flex-wrap: nowrap; + gap: 1rem; + + max-width: 32rem; + padding: 1rem; + + border-radius: 2rem; + background-color: var(--color-bg-light); +} + +.card-list .card img { + align-self: center; + + width: 4rem; +} + +.card-list .card .text { + align-self: flex-start; + + display: flex; + flex-direction: column; + flex-wrap: nowrap; + align-items: stretch; + gap: 0.5rem; + + text-align: left; +} +.card-list .card .text .title { + color: var(--color-white); + font-weight: bold; +} +.card-list .card:hover .text .title { + text-decoration: underline; +} +.card-list .card .text .description { + color: var(--color-gray); +} + + + + + /* COPYLINKS */ .copylink { position: absolute; diff --git a/page/strings.php b/page/strings.php index 362aa5a..b7ac697 100644 --- a/page/strings.php +++ b/page/strings.php @@ -404,6 +404,19 @@ + "recommendations_title" => [ + "de" => "Das Könnte Dich auch Interessieren", + "en" => "You Might also Like This" + ], + "recommendations_note" => [ + "de" => "Bei obigen Empfehlungen handelt es sich um Projekte mit Bezug auf das Thema Trans*, bei denen ich entweder selbst mitwirke oder mit deren Betreiber*innen ich in engem Austausch stehe.", + "en" => "The recommendations above are projects related to the topic of trans*, in which I either participate myself or whose operators I am in close contact with." + ], + + + + + "about_title" => [ "de" => "Über diese Webseite", "en" => "About this Website"