Update sermon-a4.css

This commit is contained in:
simonpipe 2026-04-07 16:26:38 +02:00
parent 0933e229b3
commit f078bff06d

View file

@ -6,9 +6,8 @@
--font-size: 18pt;
--line-height: 1.6;
--font-family: 'Ubuntu', sans-serif;
--primary-color: #000000; /* Das Blau aus deiner Vorlage */
--text-color: #000000;
--heading-color: #000000;
--primary-color: #000;
--lighter-color: #333;
--margin-page: 25px 35px;
}
@ -18,7 +17,7 @@ section {
height: 29.7cm;
padding: var(--margin-page);
background: white;
color: var(--text-color);
color: var(--primary-color);
font-family: var(--font-family);
font-size: var(--font-size);
line-height: var(--line-height);
@ -36,14 +35,14 @@ section::after {
}
h1 {
color: var(--heading-color);
color: var(--primary-color);
font-size: 1.2em;
font-weight: 600;
margin-bottom: -20px;
}
h2 {
color: var(--heading-color);
color: var(--primary-color);
font-size: 1.1em;
font-weight: 500;
margin-top: 30px;
@ -51,7 +50,7 @@ h2 {
}
h3 {
color: var(--heading-color);
color: var(--primary-color);
font-size: 1em;
font-weight: 500;
margin-top: 20px;
@ -63,13 +62,13 @@ p, li {
}
strong {
color: var(--heading-color);
color: var(--primary-color);
font-weight: 500;
}
/* 1. Globaler Style für Regieanweisungen (bleibt 100% groß) */
em {
color: var(--regie-color);
color: var(--primary-color);
font-style: italic;
font-size: 1em; /* Stellt sicher, dass es normal groß bleibt */
}
@ -79,11 +78,11 @@ em {
section:first-of-type h1 + em,
section:first-of-type p:first-of-type em:first-of-type {
display: block;
font-size: 0.8em; /* Hier wird es kleiner */
color: #666; /* Etwas dezenter */
margin-top: -15px; /* Zieht es näher an die Überschrift */
font-size: 0.8em;
color: var(--lighter-color;
margin-top: -15px;
margin-bottom: 20px;
font-weight: normal; /* Motto meist nicht fett, nur kursiv */
font-weight: normal;
}
blockquote {
@ -122,7 +121,7 @@ code {
background-color: #f6f8fa;
padding: 2px 6px;
border-radius: 3px;
color: var(--heading-color);
color: var(--primary-color);
font-size: 0.9em;
}