From c72cf0c4da0b33a062ee401b158eaf054469689d Mon Sep 17 00:00:00 2001 From: simonpipe Date: Tue, 7 Apr 2026 15:47:12 +0200 Subject: [PATCH] Update sermon-a4.css --- sermon-a4.css | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/sermon-a4.css b/sermon-a4.css index b20d381..04baa8d 100644 --- a/sermon-a4.css +++ b/sermon-a4.css @@ -3,16 +3,14 @@ @import 'base'; :root { - /* --- DEINE STEUERZENTRALE --- */ - --font-size: 18pt; /* 18pt für Kanzel, 12pt für Handout */ + --font-size: 18pt; --line-height: 1.6; --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; --primary-color: #000000; /* Das Blau aus deiner Vorlage */ --text-color: #000000; --heading-color: #000000; - /* Ränder: Oben, Rechts, Unten, Links (breiter zum Lochen) */ - --margin-page: 25px 35px 25px 55px; + --margin-page: 25px 35px; } section { @@ -24,23 +22,22 @@ section { font-family: var(--font-family); font-size: var(--font-size); line-height: var(--line-height); - display: block; /* Wichtig für Dokumentenfluss */ + display: block; } /* Seitenzahlen */ section::after { content: attr(data-marpit-pagination) ' / ' attr(data-marpit-pagination-total); - font-size: 12px; + font-size: 15px; position: absolute; bottom: 25px; right: 35px; color: #555; } -/* Überschriften mit deinen Farben */ h1 { color: var(--heading-color); - font-size: 1.8em; + font-size: 1.5em; font-weight: bold; margin-bottom: 20px; border-bottom: 3px solid var(--primary-color); @@ -48,8 +45,8 @@ h1 { } h2 { - color: #34495e; - font-size: 1.5em; + color: var(--heading-color); + font-size: 1.35em; font-weight: bold; margin-top: 30px; margin-bottom: 15px; @@ -57,7 +54,7 @@ h2 { } h3 { - color: #555; + color: var(--heading-color); font-size: 1.2em; margin-top: 20px; margin-bottom: 10px; @@ -65,7 +62,6 @@ h3 { p, li { margin: 10px 0; - /* Erbt automatisch die 18pt/12pt aus section */ } strong { @@ -81,7 +77,6 @@ blockquote { font-style: italic; } -/* Tabellen-Logik aus deiner Vorlage */ table { width: 100%; border-collapse: collapse; @@ -101,7 +96,6 @@ table td { border: 1px solid #ddd; } -/* Code & Pre-Blöcke (für Zitate oder spezielle Formatierung) */ code, pre { font-family: Consolas, 'Courier New', monospace; }