Jump to content

Template:Mailaddress/styles.css: Difference between revisions

From wikiNonStop
Content deleted Content added
m Majestix moved page Template:TestDivs.css to Template:TestDivs/styles.css without leaving a redirect
No edit summary
Line 1: Line 1:
/* Container für die Adresse */

.mailaddress-box {
.address-box {/* Container für die gesamte Adresse */
line-height: 1.5;
line-height: 1.4;
margin-bottom: 1em;
font-family: sans-serif;
border: 1px solid #ccc;
padding: 10px;
width: fit-content;
background-color: #f9f9f9;
}
}


.mailaddress-name {

.address-name {/* Name etwas hervorheben */
font-weight: bold;
font-weight: bold;
font-size: 1.1em;
}
}


.mailaddress-country {

text-transform: uppercase;
.zip {/* PLZ und Stadt Abstand */
margin-right: 6px;
}
}


/* Druck-Optimierung: Rahmen beim Drucken entfernen */

@media print {
.country {/* Land: Fett, Unterstrichen, Größer */
.mailaddress-box {
font-weight: bold;
text-decoration: underline;
border: none;
font-size: 1.2em;
padding: 0;
margin-top: 4px;
background-color: transparent;
}
}
}

Revision as of 11:02, 20 April 2026

/* Container für die Adresse */
.mailaddress-box {
    line-height: 1.4;
    font-family: sans-serif;
    border: 1px solid #ccc;
    padding: 10px;
    width: fit-content;
    background-color: #f9f9f9;
}

.mailaddress-name {
    font-weight: bold;
    font-size: 1.1em;
}

.mailaddress-country {
    text-transform: uppercase;
}

/* Druck-Optimierung: Rahmen beim Drucken entfernen */
@media print {
    .mailaddress-box {
        border: none;
        padding: 0;
        background-color: transparent;
    }
}