<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* Print Stylesheet tillschneider.org
* @version         1.0
* @lastmodified    9.06.2023
*/

@media print {
    /* inhaltsbreite setzen, floats und margins aufheben */
    /* achtung: die klassen und ids variieren von theme zu theme. hier also eigene klassen setzen */
    #content,
    #page {
        width: auto;
        margin: 0;
        float: none;
    }
    /** seitenrÃ¤nder einstellen */
    @page {
        margin: 2cm;
    }
    /* background auf weiÃŸ und schrift auf schwarz setzen.*/
    /* das spart tinte */
    body {
        line-height: 1.3;
        background: #fff !important;
        color: #000;
        text-align: justify;
    }
    h1 {
        font-size: 24pt;
    }
    h2,
    h3,
    h4 {
        font-size: 14pt;
        margin-top: 25px;
    }
    /* alle seitenumbrÃ¼che definieren */
    a {
        page-break-inside: avoid;
    }
    blockquote {
        page-break-inside: avoid;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    img {
        page-break-inside: avoid;
        page-break-after: avoid;
    }
    table,
    pre {
        page-break-inside: avoid;
    }
    ul,
    ol,
    dl {
        page-break-before: avoid;
    }
    /* linkfarbe und linkverhalten darstellen */
    a:link,
    a:visited,
    a {
        background: transparent;
        color: #520;
        text-decoration: underline;
        text-align: left;
    }
    /**
   * eingebundene videos verschwinden lassen und den whitespace der iframes auf null reduzieren.
   */
    .entry iframe,
    ins {
        display: none;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        line-height: 0pt !important;
        white-space: nowrap;
    }
    .embed-youtube,
    .embed-responsive {
        position: absolute;
        height: 0;
        overflow: hidden;
    }
    /* unnÃ¶tige elemente ausblenden fÃ¼r den druck */
    nav,
    .site-title img,
    #footer,
    .htt_afd_log,
    .sidebar,
    .show-author,
    .footer_information,
    #cookie-notice,
    .socials-mobile,
    .socials-desktop {
        display: none;
    }
    /* benutzerdefinierte nachrichten vor und nach dem inhalt einfÃ¼gen */
    main:after {
        content: "\ (c) Hans-Thomas Tillschneider 2023 - tillschneider.org";
        color: #999 !important;
        font-size: 1em;
        padding-top: 30px;
    }
    /* wichtige elemente definieren */
    p,
    address,
    li,
    dt,
    dd,
    blockquote {
        font-size: 100%
    }
    ul,
    ol {
        list-style: square;
        margin-left: 18pt;
        margin-bottom: 20pt;
    }
    li {
        line-height: 1.6em;
    }
}
</pre></body></html>