MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus wiki.kometin.at
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
||
Zeile 17: | Zeile 17: | ||
justify-content: center; | justify-content: center; | ||
} */ | } */ | ||
/* Beschriftung „Inhaltsverzeichnis“ spannt über alle Spalten */ | |||
.toc .toctitle { column-span: all; } | |||
/* Spaltenanzahl */ | |||
.toc>ul { column-count: 5; column-width: auto; column-gap: 1em; } | |||
/* Spaltenanzahl nach Fensterbreite; Breitenwerte anpassen! */ | |||
@media (max-width: 1540px) { .toc>ul { column-count: 4; } } | |||
@media (max-width: 1340px) { .toc>ul { column-count: 3; } } | |||
@media (max-width: 1140px) { .toc>ul { column-count: 2; } } | |||
@media (max-width: 940px) { .toc>ul { column-count: 1; } } | |||
/* Zeilen ab 3. Ebenen zusammenhalten */ | |||
.toc>ul>ul ul, | |||
.toc>ul ul>li { column-break-inside: avoid; } |
Version vom 24. Februar 2024, 13:22 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/*#mw-wrapper {
background: hsla(221, 55%, 61%, 0.2);
}*/
#footer-places {
display: flex;
align-items: center;
justify-content: center;
}
#footer-info-lastmod {
font-size: 11px;
}
/* #footer-icons {
display: flex;
justify-content: center;
} */
/* Beschriftung „Inhaltsverzeichnis“ spannt über alle Spalten */
.toc .toctitle { column-span: all; }
/* Spaltenanzahl */
.toc>ul { column-count: 5; column-width: auto; column-gap: 1em; }
/* Spaltenanzahl nach Fensterbreite; Breitenwerte anpassen! */
@media (max-width: 1540px) { .toc>ul { column-count: 4; } }
@media (max-width: 1340px) { .toc>ul { column-count: 3; } }
@media (max-width: 1140px) { .toc>ul { column-count: 2; } }
@media (max-width: 940px) { .toc>ul { column-count: 1; } }
/* Zeilen ab 3. Ebenen zusammenhalten */
.toc>ul>ul ul,
.toc>ul ul>li { column-break-inside: avoid; }