MediaWiki:Common.css: Unterschied zwischen den Versionen
Erscheinungsbild
Inhalt gelöscht Inhalt hinzugefügt
Fake (Diskussion | Beiträge) hide main page title |
Bg3992 (Diskussion | Beiträge) KKeine Bearbeitungszusammenfassung |
||
| (14 dazwischenliegende Versionen von 5 Benutzern werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
/* CSS an dieser Stelle wirkt sich auf alle Skins aus */ |
/* CSS an dieser Stelle wirkt sich auf alle Skins aus */ |
||
@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') format('truetype'); |
|||
} |
|||
/* Coole Schrift für h1-Überschriften, und türkisen Balken drunter */ |
|||
h1 { |
|||
border-bottom: 5px solid rgb(85, 204, 204); |
|||
font-family: "Nova Square" !important; |
|||
} |
|||
/* Überschrift "Hauptseite" auf Hauptseite ausblenden */ |
|||
| ⚫ | |||
display:none; |
|||
} |
|||
/* Zweispaltige Projektübersicht auf Startseite */ |
|||
.twoColumnTable { |
|||
-ms-column-count: 2; |
|||
-moz-column-count: 2; |
|||
-webkit-column-count: 2; |
|||
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; |
|||
} |
|||
} |
|||
Aktuelle Version vom 30. Juni 2026, 21:50 Uhr
/* CSS an dieser Stelle wirkt sich auf alle Skins aus */
@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') format('truetype');
}
/* Coole Schrift für h1-Überschriften, und türkisen Balken drunter */
h1 {
border-bottom: 5px solid rgb(85, 204, 204);
font-family: "Nova Square" !important;
}
/* Überschrift "Hauptseite" auf Hauptseite ausblenden */
body.page-Hauptseite h1.firstHeading {
display:none;
}
/* Zweispaltige Projektübersicht auf Startseite */
.twoColumnTable {
-ms-column-count: 2;
-moz-column-count: 2;
-webkit-column-count: 2;
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;
}
}