From da16c1c086c7c7eaca02f15b7d6b381bf2f0faf3 Mon Sep 17 00:00:00 2001 From: Patrick Goltzsch Date: Fri, 10 Dec 2021 18:26:21 +0000 Subject: =?UTF-8?q?Erste=20Ver=C3=B6ffentlichung?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OEBPS/Styles/style.css | 316 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 316 insertions(+) create mode 100644 OEBPS/Styles/style.css (limited to 'OEBPS/Styles/style.css') diff --git a/OEBPS/Styles/style.css b/OEBPS/Styles/style.css new file mode 100644 index 0000000..6248c90 --- /dev/null +++ b/OEBPS/Styles/style.css @@ -0,0 +1,316 @@ +body { + padding: 1em; + line-height: 1.3em; +} + +.prose { + text-align: justify; +} + +img.resp { + max-width: 100%; + height: auto; +} + +h1 { + font-size: 1.7em; + line-height: 2em; +} + +h2 { + font-size: 1.5em; +} + +h3 { + font-size: 1.3em; +} + +h4 { + font-size: 1.1em; +} + +h5 { + font-size: 1.1em; +} + +.subtitle { + font-size: 1.1em; +} + +.subheading { + font-size: 0.9em; +} + +.smaller { + font-size: 70%; +} + +h2.section { + text-align: center; +} + +.section { + padding-top: 1em; +} + +.sub { + text-indent: 2em; +} + +.center { + text-align: center; +} + +.rightofcenter { + margin-left: 50%; +} + +.lower { + padding-top: 10%; +} + +p { + margin: 1em 0em; + widows: 2 !important; + orphans: 2 !important; +} + +.indent { + padding-left: 2em; +} + +.vindent { + padding-left: 1em; +} + +.pf-indent { + padding-left: 5em; +} + +.txtindent { + padding-left: 2.5em; +} + +.initial { + font-size: 150%; + font-weight: bold; + display: inline; +} + +.sansserif { + font-family: sans-serif; +} + +.dedication, +.source { + font-size: 0.9em; + font-style: italic; +} + +.bookdedication { + font-size: 1.3em; +} + +.footnote { + font-size: 0.8em; +} + +.smallcaps { + font-variant: small-caps; +} + +.spaced { + letter-spacing: 0.125em; +} + +.inhalt-entry, +.index-entry { + line-height: 1.6em; +} + +a { + text-decoration: underline; +} + +.right { + text-align: right; +} + +.fright { + float: right; +} + +.bold { + font-weight: bold; +} + +.italic { + font-style: italic; +} + +.mono { + font-family: monospace; +} + +.uppercase { + text-transform: uppercase; +} + +.vsub { + vertical-align: sub; +} + +.vsuper { + vertical-align: super; +} + +.hspace2 { + padding: 0 1.5em; +} + +.vspace { + padding-top: 1em; +} + +.vspace2 { + padding-top: 1.5em; +} + +.vspace5 { + padding-top: 5em; +} + +.vspace7 { + padding-top: 7em; +} + +.vspace10 { + padding-top: 10em; +} + +.titel { + letter-spacing: 0.2em; + line-height: 1em; +} + +#titel hr { + max-width: 27em; + color: #272727 +} + +table { + border-collapse: collapse; +} + +table p { + margin-top: 0; +} + +.nomargebottom { + margin-bottom: 0; +} + +.nomargetop { + margin-top: 0; +} + +.page { + height: 100%; + text-align: center; +} + +.bottom { + width: 100%; + text-align: center; + position: absolute; + bottom: 0; +} + +hr.start { +/* + margin: 2em auto; + width: 5.5em; +*/ + width: 16%; + margin: 0 42% 0 42%; +} + +hr.sect { +/* + margin: 2em auto; + width: 4em; +*/ + width: 12%; + margin: 0 44% 0 44%; +} + +hr.fin { +/* + margin: 2em auto; + width: 8em; +*/ + width: 22%; + margin: 0 39% 0 39%; +} + +hr.spacer { + border-top: 1px solid #272727; + border-bottom: 1px solid #272727; + height: 2px; + width: 5em; +} + +hr.spacer100 { + border-top: 1px solid #272727; + border-bottom: 1px solid #272727; + height: 2px; +} + +hr.deco { +/* + width: 15em; +*/ + width: 54%; + margin: 0 23% 0 23%; + margin-bottom: 2em; + border-top: solid 2px #272727; + border-bottom: solid 5px #272727; + height: 3px; + border-left: none; + border-right: none; +} + +.phalfmargin { + margin: 0.5em 0; +} + +ul { + padding-bottom: 0.5em; + list-style: none; +} + +.f11 { + font-size: 1.1em; +} + +.f12 { + font-size: 1.2em; +} + +.f14 { + font-size: 1.4em; +} + +.line1 { + line-height: 0.5em; +} + +.justif { + text-align: justify; +} +/* spreizt das justif-element über die ganze zeile */ +.justif:after { + content: ""; + display: inline-block; + width: 100%; +} -- cgit v1.2.3