MediaWiki:Common.css: Unterschied zwischen den Versionen
Erscheinungsbild
Inhalt gelöscht Inhalt hinzugefügt
Bg3992 (Diskussion | Beiträge) KKeine Bearbeitungszusammenfassung |
Bg3992 (Diskussion | Beiträge) KKeine Bearbeitungszusammenfassung |
||
| Zeile 10: | Zeile 10: | ||
src: local('Nova Square'), local('NovaSquare'), url('/resources/assets/fonts/NovaSquare-Regular.ttf'); |
src: local('Nova Square'), local('NovaSquare'), url('/resources/assets/fonts/NovaSquare-Regular.ttf'); |
||
} |
} |
||
/* |
|||
h1 { |
h1 { |
||
border-bottom: 5px solid rgb(85, 204, 204); |
border-bottom: 5px solid rgb(85, 204, 204); |
||
font-family: "Nova Square"; |
font-family: "Nova Square"; |
||
} |
} |
||
*/ |
|||
body.page-Hauptseite h1.firstHeading { |
body.page-Hauptseite h1.firstHeading { |
||
display:none; |
display:none; |
||
} |
} |
||
.twoColumnTable { |
.twoColumnTable { |
||
| Zeile 30: | Zeile 28: | ||
@media only screen and (max-width: 768px){ |
@media only screen and (max-width: 768px){ |
||
.twoColumnTable { |
.twoColumnTable { |
||
-ms-column-count: 1 !important; |
|||
-moz-column-count: 1 !important; |
-moz-column-count: 1 !important; |
||
-webkit-column-count: 1 !important; |
-webkit-column-count: 1 !important; |
||
column-count: 1 !important; |
|||
} |
} |
||
} |
} |
||
Version vom 30. Juni 2026, 21:26 Uhr
/* CSS an dieser Stelle wirkt sich auf alle Skins aus */
/* ALTES CSS: */
/* body.page-Hauptseite h1.firstHeading { display:none; } */
@font-face {
font-family: 'Nova Square';
font-style: normal;
font-weight: 400;
/* License for the font: https://wiki.bytewerk.org/resources/assets/fonts/NovaSquare-Regular.license */
src: local('Nova Square'), local('NovaSquare'), url('/resources/assets/fonts/NovaSquare-Regular.ttf');
}
/*
h1 {
border-bottom: 5px solid rgb(85, 204, 204);
font-family: "Nova Square";
}
*/
body.page-Hauptseite h1.firstHeading {
display:none;
}
.twoColumnTable {
column-count: 2;
-moz-column-count: 2;
-webkit-column-count: 2;
}
@media only screen and (max-width: 768px){
.twoColumnTable {
-ms-column-count: 1 !important;
-moz-column-count: 1 !important;
-webkit-column-count: 1 !important;
column-count: 1 !important;
}
}