Vorlage:ÜbersichtMUS/styles.css: Unterschied zwischen den Versionen
Aus CMO
UweS (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
UweS (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 5: | Zeile 5: | ||
border-collapse: collapse !important; | border-collapse: collapse !important; | ||
border-spacing: 0; | border-spacing: 0; | ||
border: 1px solid # | border: 1px solid #8A9E6A; /* außen: abgeschwächtes Moosgrün */ | ||
border-radius: 0 !important; | border-radius: 0 !important; | ||
font-size: 100%; | font-size: 100%; | ||
| Zeile 14: | Zeile 14: | ||
table.übersichtmus td, | table.übersichtmus td, | ||
table.übersichtmus th { | table.übersichtmus th { | ||
border: 1px solid # | border: 1px solid #C8D4B8; /* innen: sehr helles Moosgrün */ | ||
padding: 0.4em 0.6em; | padding: 0.4em 0.6em; | ||
vertical-align: top; | vertical-align: top; | ||
| Zeile 20: | Zeile 20: | ||
/* Außenkanten wirklich einfarbig */ | /* Außenkanten wirklich einfarbig */ | ||
table.übersichtmus tr:first-child > * { border-top-color: # | table.übersichtmus tr:first-child > * { border-top-color: #8A9E6A; } | ||
table.übersichtmus tr:last-child > * { border-bottom-color: # | table.übersichtmus tr:last-child > * { border-bottom-color: #8A9E6A; } | ||
table.übersichtmus tr > *:first-child { border-left-color: # | table.übersichtmus tr > *:first-child { border-left-color: #8A9E6A; } | ||
table.übersichtmus tr > *:last-child { border-right-color: # | table.übersichtmus tr > *:last-child { border-right-color: #8A9E6A; } | ||
/* Trennlinie zwischen oberer und unterer Zeile */ | /* Trennlinie zwischen oberer und unterer Zeile */ | ||
table.übersichtmus tr:first-child > * { border-bottom-color: # | table.übersichtmus tr:first-child > * { border-bottom-color: #C8D4B8; } | ||
table.übersichtmus tr:nth-child(2) > * { border-top-color: # | table.übersichtmus tr:nth-child(2) > * { border-top-color: #C8D4B8; } | ||
/* Kopfzeile */ | /* Kopfzeile */ | ||
table.übersichtmus tr:first-child td, | table.übersichtmus tr:first-child td, | ||
table.übersichtmus tr:first-child th { | table.übersichtmus tr:first-child th { | ||
background: # | background: #F0F4EB; | ||
font-size: 95%; | font-size: 95%; | ||
color: #555; | color: #555; | ||
Aktuelle Version vom 6. Mai 2026, 16:43 Uhr
/* Übersichtstabelle Museumsführer */
table.übersichtmus {
width: 100%;
margin: 1em 0 0.4em 0;
border-collapse: collapse !important;
border-spacing: 0;
border: 1px solid #8A9E6A; /* außen: abgeschwächtes Moosgrün */
border-radius: 0 !important;
font-size: 100%;
color: #333;
text-align: left;
}
table.übersichtmus td,
table.übersichtmus th {
border: 1px solid #C8D4B8; /* innen: sehr helles Moosgrün */
padding: 0.4em 0.6em;
vertical-align: top;
}
/* Außenkanten wirklich einfarbig */
table.übersichtmus tr:first-child > * { border-top-color: #8A9E6A; }
table.übersichtmus tr:last-child > * { border-bottom-color: #8A9E6A; }
table.übersichtmus tr > *:first-child { border-left-color: #8A9E6A; }
table.übersichtmus tr > *:last-child { border-right-color: #8A9E6A; }
/* Trennlinie zwischen oberer und unterer Zeile */
table.übersichtmus tr:first-child > * { border-bottom-color: #C8D4B8; }
table.übersichtmus tr:nth-child(2) > * { border-top-color: #C8D4B8; }
/* Kopfzeile */
table.übersichtmus tr:first-child td,
table.übersichtmus tr:first-child th {
background: #F0F4EB;
font-size: 95%;
color: #555;
padding-left: 2em;
}
/* Mobil */
@media (max-width: 600px) {
table.übersichtmus td,
table.übersichtmus th {
padding: .25em;
}
table.übersichtmus tr:first-child td,
table.übersichtmus tr:first-child th {
font-size: 80%;
}
table.übersichtmus tr:last-child td,
table.übersichtmus tr:last-child th {
font-size: 70%;
}
}