Base font size 15.5 -> 18 (maybe 17?)

This commit is contained in:
Simon Martens
2025-09-21 23:54:03 +02:00
parent 163cf5fb34
commit cfa5221de0
9 changed files with 24 additions and 24 deletions

View File

@@ -3,7 +3,7 @@
{{ if ne (len $pieces) 0 }}
<div class="mt-4 akteur-beitraege-section">
<div class="py-1 rounded-lg mb-1">
<h2 class="text-lg font-bold">
<h2 class="font-bold">
<i class="ri-newspaper-line mr-2"></i><u class="decoration underline-offset-3">Beiträge</u>
</h2>
</div>
@@ -40,7 +40,7 @@
{{- /* Display grouped pieces */ -}}
{{- range $groupKey, $groupedItems := $groupedPieces -}}
<div class="break-inside-avoid pl-4">
<div class="text-lg pb-1">
<div class="pb-1">
{{- /* Use first piece for display text */ -}}
{{ template "_piece_summary" (dict "Piece" (index $groupedItems 0).Item "CurrentActorID" $a.ID) }}

View File

@@ -8,7 +8,7 @@
<!-- Large serif name - bold with inline permalink icon -->
<div class="text-xl font-serif font-bold mb-1 flex items-center gap-2">
<span>{{ index $a.Names 0 }}</span>
<a href="/akteure/{{ $a.ID }}" class="text-gray-500 hover:text-blue-600 transition-colors text-lg no-underline" title="Permalink zu {{ index $a.Names 0 }}">
<a href="/akteure/{{ $a.ID }}" class="text-gray-500 hover:text-blue-600 transition-colors no-underline" title="Permalink zu {{ index $a.Names 0 }}">
<i class="ri-link text-base"></i>
</a>
</div>
@@ -16,7 +16,7 @@
<!-- Years ONLY below name -->
{{ if ne $gnd nil }}
{{- if or (ne (len $gnd.DateOfBirth) 0) (ne (len $gnd.DateOfDeath) 0) -}}
<div class="text-gray-800 text-lg">
<div class="text-gray-800">
{{- if ne (len $gnd.DateOfBirth) 0 -}}
{{ HRDateYear (index $gnd.DateOfBirth 0) }}
{{- end -}}
@@ -30,7 +30,7 @@
<!-- First three professions -->
{{ if ne $gnd nil }}
{{- if ne (len $gnd.ProfessionOrOccupation) 0 -}}
<div class="text-gray-800 text-lg">
<div class="text-gray-800">
{{ range $i, $prof := $gnd.ProfessionOrOccupation }}
{{ if lt $i 3 }}
{{ if gt $i 0 }} · {{ end }}{{ $prof.Label }}
@@ -61,7 +61,7 @@
{{- if ne (len $gnd.SameAs) 0 -}}
{{ range $_, $ref := $gnd.SameAs }}
{{- if ne $ref.ID "" -}}
<a href="{{ $ref.ID }}" target="_blank" class="text-gray-500 hover:text-blue-600 transition-colors text-lg" title="External Link">
<a href="{{ $ref.ID }}" target="_blank" class="text-gray-500 hover:text-blue-600 transition-colors" title="External Link">
<i class="ri-global-line"></i>
</a>
{{- end -}}

View File

@@ -14,7 +14,7 @@
{{- if or (ne (len $works) 0) (ne (len $workPieces) 0) -}}
<div class="mt-4 akteur-werke-section">
<div class="py-1 rounded-lg mb-1">
<h2 class="text-lg font-bold">
<h2 class="font-bold">
<i class="ri-book-line mr-2"></i><u class="decoration underline-offset-3">Werke</u>
</h2>
</div>
@@ -22,7 +22,7 @@
{{ range $_, $w := $works }}
<div class="mb-1.5 break-inside-avoid max-w-[95ch]">
{{- if ne (len $w.Item.Citation.InnerXML ) 0 -}}
<div class="text-lg indent-6">
<div class="indent-6">
{{- Safe $w.Item.Citation.HTML -}}
{{- range $_, $url := $w.Item.URLs -}}
<span class="ml-1 whitespace-nowrap">
@@ -35,7 +35,7 @@
{{- end -}}
{{ $workPieces := LookupPieces $w.Item }}
{{ if len $workPieces }}
<div class="mt-1 text-lg">
<div class="mt-1">
{{- /* Group pieces by piece ID first to combine all categories per piece, then by additional authors */ -}}
{{- $pieceData := dict -}}
{{- range $_, $p := $workPieces -}}
@@ -296,7 +296,7 @@
{{- /* Display standalone work pieces */ -}}
{{- range $groupKey, $categoryPieces := $standaloneGrouped -}}
<div class="mb-1.5 break-inside-avoid max-w-[95ch]">
<div class="text-lg">
<div class="">
<span class="inline-block">
{{- /* Extract category and additional authors from group key */ -}}
{{- $keyParts := split $groupKey "|" -}}

View File

@@ -53,7 +53,7 @@
{{ $a := index $agents $id }}
<div class="mx-3">
<a href="#author-{{ $id }}"
class="block px-2 py-0.5 text-lg text-gray-900 scrollspy-link no-underline box-content relative z-10 scrollspy-hover"
class="block px-2 py-0.5 text-gray-900 scrollspy-link no-underline box-content relative z-10 scrollspy-hover"
data-target="author-{{ $id }}">
{{ index $a.Names 0 }}
</a>