Template:Mailaddress/styles.css: Difference between revisions
Appearance
Content deleted Content added
Created page with "→Container für die gesamte Adresse: .address-box { line-height: 1.5; margin-bottom: 1em; } →Name etwas hervorheben: .address-name { font-weight: bold; } →PLZ und Stadt Abstand: .zip { margin-right: 6px; } →Land: Fett, Unterstrichen, Größer: .country { font-weight: bold; text-decoration: underline; font-size: 1.2em; margin-top: 4px; }" |
No edit summary |
||
| (12 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* Container für die |
/* Container für die Adresse */ |
||
. |
.mailaddress-box { |
||
line-height: 1. |
line-height: 1.4; |
||
font-family: sans-serif; |
|||
/*border: 1px solid #ccc; */ |
|||
padding: 10px; |
|||
width: fit-content; |
|||
/* background-color: #f9f9f9; */ |
|||
} |
} |
||
| ⚫ | |||
/* Name etwas hervorheben */ |
|||
| ⚫ | |||
font-weight: bold; |
font-weight: bold; |
||
| ⚫ | |||
| ⚫ | |||
} |
} |
||
| ⚫ | |||
/* PLZ und Stadt Abstand */ |
|||
margin-top: 1em; |
|||
.zip { |
|||
font-weight: bold; |
|||
| ⚫ | |||
text-decoration: underline; |
|||
text-transform: uppercase; |
|||
} |
} |
||
/* Druck-Optimierung: Rahmen beim Drucken entfernen */ |
|||
/* Land: Fett, Unterstrichen, Größer */ |
|||
@media print { |
|||
| ⚫ | |||
.mailaddress-box { |
|||
| ⚫ | |||
border: none; |
|||
padding: 0; |
|||
background-color: transparent; |
|||
} |
|||
} |
} |
||
Latest revision as of 07:50, 21 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;
margin-bottom: 1em;
}
.mailaddress-country {
margin-top: 1em;
font-weight: bold;
text-decoration: underline;
text-transform: uppercase;
}
/* Druck-Optimierung: Rahmen beim Drucken entfernen */
@media print {
.mailaddress-box {
border: none;
padding: 0;
background-color: transparent;
}
}