P2: Typografie-Hierarchie — Seiten-/Karten-/Tabellen-Header
- h1: text-2xl font-bold text-slate-900 - Karten-h2: text-base font-semibold text-slate-800 - th: text-xs font-medium uppercase tracking-wider text-slate-500
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block titel %}{{ titel_headline }} — Spiele-Redaktion{% endblock %}
|
||||
{% block inhalt %}
|
||||
<h1 class="text-2xl font-bold mb-2">Eintrag bearbeiten</h1>
|
||||
<h1 class="text-2xl font-bold text-slate-900 mb-2">Eintrag bearbeiten</h1>
|
||||
<p class="text-slate-600 mb-4">„{{ eintrag.titel }}“ · Rezensent:
|
||||
{% if user.id == eintrag.rezensent_id %}du{% else %}{{ user.display_name }}{% endif %}
|
||||
</p>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{% block titel %}{{ titel }} — Spiele-Redaktion{% endblock %}
|
||||
{% block inhalt %}
|
||||
<div x-data="{ loeschFormular: null, loeschTitel: '' }">
|
||||
<h1 class="text-2xl font-bold mb-2">{{ titel }}</h1>
|
||||
<h1 class="text-2xl font-bold text-slate-900 mb-2">{{ titel }}</h1>
|
||||
<p class="text-slate-600 mb-4">
|
||||
Planungsliste der Redaktion: wer reviewt welches Spiel für welche Ausgabe.
|
||||
Jede Eintragung — aus den Neuheiten verschoben oder händisch nachgetragen —
|
||||
@@ -17,7 +17,7 @@
|
||||
{% endif %}
|
||||
|
||||
<div class="bg-white border border-slate-200 rounded-xl shadow-sm p-4 mb-6">
|
||||
<h2 class="font-semibold mb-3">Titel händisch nachtragen</h2>
|
||||
<h2 class="text-base font-semibold text-slate-800 mb-3">Titel händisch nachtragen</h2>
|
||||
<!-- Mobil: Felder untereinander vollbreit; ab sm: flexibel nebeneinander -->
|
||||
<form method="post" action="/planung/neu" class="grid grid-cols-1 gap-3 sm:flex sm:flex-wrap sm:items-end">
|
||||
<div class="sm:w-64 lg:w-72">
|
||||
@@ -137,14 +137,14 @@
|
||||
<table class="w-full text-sm">
|
||||
<thead class="text-left text-slate-500 sticky top-0 z-10 [&>tr>th]:bg-slate-50 [&>tr>th]:shadow-[inset_0_-1px_0_0_#e2e8f0]">
|
||||
<tr>
|
||||
<th class="px-4 py-3 font-medium">Cover</th>
|
||||
<th class="px-4 py-3 font-medium">Spieltitel</th>
|
||||
<th class="px-4 py-3 font-medium">Verlag</th>
|
||||
<th class="px-4 py-3 font-medium">Ausgabe</th>
|
||||
<th class="px-4 py-3 font-medium">Rezensent</th>
|
||||
<th class="px-4 py-3 font-medium">Status</th>
|
||||
<th class="px-4 py-3 font-medium">Aktualisiert</th>
|
||||
<th class="px-4 py-3 font-medium">Aktionen</th>
|
||||
<th class="px-4 py-3 font-medium text-xs uppercase tracking-wider">Cover</th>
|
||||
<th class="px-4 py-3 font-medium text-xs uppercase tracking-wider">Spieltitel</th>
|
||||
<th class="px-4 py-3 font-medium text-xs uppercase tracking-wider">Verlag</th>
|
||||
<th class="px-4 py-3 font-medium text-xs uppercase tracking-wider">Ausgabe</th>
|
||||
<th class="px-4 py-3 font-medium text-xs uppercase tracking-wider">Rezensent</th>
|
||||
<th class="px-4 py-3 font-medium text-xs uppercase tracking-wider">Status</th>
|
||||
<th class="px-4 py-3 font-medium text-xs uppercase tracking-wider">Aktualisiert</th>
|
||||
<th class="px-4 py-3 font-medium text-xs uppercase tracking-wider">Aktionen</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="divide-y divide-slate-100">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block titel %}{{ titel_headline }} — Spiele-Redaktion{% endblock %}
|
||||
{% block inhalt %}
|
||||
<h1 class="text-2xl font-bold mb-2">{{ titel_headline }}</h1>
|
||||
<h1 class="text-2xl font-bold text-slate-900 mb-2">{{ titel_headline }}</h1>
|
||||
<p class="text-slate-600 mb-4">
|
||||
Die automatische Dedup-Prüfung hat Treffer ergeben. Bitte prüfen, bevor
|
||||
der Eintrag angelegt wird.
|
||||
@@ -41,7 +41,7 @@
|
||||
<input type="hidden" name="{{ name }}" value="{{ wert }}">
|
||||
{% endfor %}
|
||||
|
||||
<h2 class="font-semibold mb-3">Welcher Verlag soll geführt werden?</h2>
|
||||
<h2 class="text-base font-semibold text-slate-800 mb-3">Welcher Verlag soll geführt werden?</h2>
|
||||
<div class="space-y-2 mb-4 text-sm">
|
||||
{% for option in verlags_optionen %}
|
||||
<label class="flex items-center gap-2 cursor-pointer">
|
||||
|
||||
Reference in New Issue
Block a user