MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
FRob (Diskussion | Beiträge) (try to replace static div on main page) |
FRob (Diskussion | Beiträge) K (forgot the dots) |
||
Zeile 24: | Zeile 24: | ||
} |
} |
||
twoColumnTable { |
.twoColumnTable { |
||
column-count: 2; |
column-count: 2; |
||
-moz-column-count: 2; |
-moz-column-count: 2; |
||
Zeile 31: | Zeile 31: | ||
@media only screen and (max-width: 480px){ |
@media only screen and (max-width: 480px){ |
||
twoColumnTable { |
.twoColumnTable { |
||
column-count: 1 !important; |
column-count: 1 !important; |
||
-moz-column-count: 1 !important; |
-moz-column-count: 1 !important; |
Version vom 13. November 2018, 21:10 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: http://bytewerk.org/fonts/NovaSquare/OFL.txt */
src: local('Nova Square'), local('NovaSquare'), url(https://wiki.bytewerk.org/resources/assets/fonts/NovaSquare-Regular.ttf);
};
body {
color: rgb(66, 66, 66);
}
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: 480px){
.twoColumnTable {
column-count: 1 !important;
-moz-column-count: 1 !important;
-webkit-column-count: 1 !important;
}
}