MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus Stadt Ingolstadt Stadtgeschichtslexikon
Inhalt gelöscht Inhalt hinzugefügt
Admin (Diskussion | Beiträge) änd |
K form |
||
| (12 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
| Zeile 9: | Zeile 9: | ||
.subpages { |
.subpages { |
||
display: none; |
display: none; |
||
} |
|||
/* Inhaltsverzeichnis linksbündig anzeigen */ |
|||
#toc.toc { |
|||
float: none; |
|||
} |
} |
||
| Zeile 22: | Zeile 27: | ||
} |
} |
||
} |
} |
||
@media screen and (max-width: |
@media screen and (max-width: 767px) { |
||
div.mw-inputbox-centered form.searchbox input.mw-inputbox-input.searchboxInput.mw-ui-input.mw-ui-input-inline { |
div.mw-inputbox-centered form.searchbox input.mw-inputbox-input.searchboxInput.mw-ui-input.mw-ui-input-inline { |
||
width: |
max-width: 20em; |
||
} |
} |
||
} |
} |
||
Aktuelle Version vom 16. Januar 2023, 18:39 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* Überschrift der Hauptseite verbergen */
body.page-Hauptseite h1.firstHeading {
display: none;
}
/* Links zu Unterseiten verbergen */
.subpages {
display: none;
}
/* Inhaltsverzeichnis linksbündig anzeigen */
#toc.toc {
float: none;
}
/* Bilder responsiv machen */
.resimg img {
max-width: 100%;
height: auto;
}
@media screen and (min-width: 768px) {
div.mw-inputbox-centered form.searchbox input.mw-inputbox-input.searchboxInput.mw-ui-input.mw-ui-input-inline {
width: 45em;
}
}
@media screen and (max-width: 767px) {
div.mw-inputbox-centered form.searchbox input.mw-inputbox-input.searchboxInput.mw-ui-input.mw-ui-input-inline {
max-width: 20em;
}
}