MediaWiki:Common.css: Difference between revisions
From TARPN Wiki
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Hide the logo in the main page, since we display it in the header */ | |||
.mw-wiki-logo {display:none !important;} | .mw-wiki-logo {display:none !important;} | ||
/* At mobile screen size, hide the large welcome text */ | |||
@media screen and (min-width: 851px) { | |||
#welcome-text {display: none !important;} | |||
} |
Revision as of 22:19, 22 April 2023
/* CSS placed here will be applied to all skins */
/* Hide the logo in the main page, since we display it in the header */
.mw-wiki-logo {display:none !important;}
/* At mobile screen size, hide the large welcome text */
@media screen and (min-width: 851px) {
#welcome-text {display: none !important;}
}