From 7f93032e8d7545864bfd6222b33acfa58145f8ab Mon Sep 17 00:00:00 2001
From: Nico Graebling <graeblin>
Date: Wed, 12 Jul 2023 01:04:01 +0200
Subject: [PATCH] Adapt sizes and margins to match 100 percent layout
 (debugging with 90 percent ... Doh!)

---
 .../ananke-adapted/layouts/partials/site-header.html |  4 ++--
 .../layouts/partials/site-navigation.html            |  2 +-
 .../layouts/shortcodes/one-team-member.html          |  6 +++---
 .../layouts/shortcodes/project-category.html         | 12 ++++++------
 4 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/visgroup/themes/ananke-adapted/layouts/partials/site-header.html b/visgroup/themes/ananke-adapted/layouts/partials/site-header.html
index fef552e..de90cc0 100644
--- a/visgroup/themes/ananke-adapted/layouts/partials/site-header.html
+++ b/visgroup/themes/ananke-adapted/layouts/partials/site-header.html
@@ -8,11 +8,11 @@
     <div class="{{ .Site.Params.cover_dimming_class | default "bg-black-60" }}">
       {{ partial "site-navigation.html" .}}
       <div class="tc-l pv4 pv6-l ph3 ph4-ns">
-        <h1 class="f2 f-subheadline-l fw2 white-90 mb0 lh-title">
+        <h1 class="f2 f-subheadline-l fw2 white-90 mb0 lh-title" style="font-size: 60px;">
           {{ .Title | default .Site.Title }}
         </h1>
         {{ with .Params.description }}
-          <h2 class="fw1 f5 f3-l white-80 measure-wide-l center mt3">
+          <h2 class="fw1 f5 f3-l white-80 measure-wide-l center mt3"  style="font-size: 40px;">
             {{ . }}
           </h2>
         {{ end }}
diff --git a/visgroup/themes/ananke-adapted/layouts/partials/site-navigation.html b/visgroup/themes/ananke-adapted/layouts/partials/site-navigation.html
index 0e4a2dd..f35224c 100644
--- a/visgroup/themes/ananke-adapted/layouts/partials/site-navigation.html
+++ b/visgroup/themes/ananke-adapted/layouts/partials/site-navigation.html
@@ -13,7 +13,7 @@
         <ul class="{{ cond (eq $.Site.Language.LanguageDirection "rtl") "pr0 ml3" "pl0 mr3" }}">
           {{ range .Site.Menus.main }}
           <li class="list f5 f4-ns fw4 dib {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
-            <a class="ufzNavigationLinks no-underline white-90" href="{{ .URL }}" title="{{ i18n "pageTitle" . }}">
+            <a class="ufzNavigationLinks no-underline white-90" href="{{ .URL }}" style="font-size: 22px;" title="{{ i18n "pageTitle" . }}">
               {{ .Name }}
             </a>
           </li>
diff --git a/visgroup/themes/ananke-adapted/layouts/shortcodes/one-team-member.html b/visgroup/themes/ananke-adapted/layouts/shortcodes/one-team-member.html
index 3705da2..2418531 100644
--- a/visgroup/themes/ananke-adapted/layouts/shortcodes/one-team-member.html
+++ b/visgroup/themes/ananke-adapted/layouts/shortcodes/one-team-member.html
@@ -1,9 +1,9 @@
 <script src="/js/toggleFullBioVisibility.js"></script>
 
-<div style="width: 15rem;
+<div style="width: 12rem;
 	margin-top: 40px;
-	margin-left: 20px;
-	margin-right: 20px;
+	margin-left: 0.4rem;
+	margin-right: 0.4rem;
 	background-color: hsla(0,0%,96%,1);
 	padding: 30px;
 	border-radius: 1rem;
diff --git a/visgroup/themes/ananke-adapted/layouts/shortcodes/project-category.html b/visgroup/themes/ananke-adapted/layouts/shortcodes/project-category.html
index f1d5974..50d945a 100644
--- a/visgroup/themes/ananke-adapted/layouts/shortcodes/project-category.html
+++ b/visgroup/themes/ananke-adapted/layouts/shortcodes/project-category.html
@@ -11,11 +11,11 @@
 
 <div class="projectCat" style="
 	height: 10rem;
-	width: 20rem;
-	border-radius: 1rem;
+	width: 15rem;
+	border-radius: 0.5rem;
 	margin-top: 40px;
-	margin-left: 10px;
-	margin-right: 10px;
+	margin-left: 0.3rem;
+	margin-right: 0.3rem;
 	padding: 30px;
 	float: left;
 	cursor: pointer;
@@ -24,11 +24,11 @@
 
 	<center>
 	
-		<h2 style="color: #FFF;
+		<h3 style="color: #FFF;
 			text-shadow: 2px 0 #444, -2px 0 #444, 0 2px #444, 0 -2px #444,
              1px 1px #444, -1px -1px #444, 1px -1px #444, -1px 1px #444;
 
-		"> {{ .Get "category-title"}} </h2>
+		"> {{ .Get "category-title"}} </h3>
 
 	</center>
 
-- 
GitLab