MediaWiki:Common.css: Difference between revisions

From TARPN Wiki
No edit summary
No edit summary
Line 4: Line 4:
.mw-wiki-logo {display:none !important;}
.mw-wiki-logo {display:none !important;}


/* At mobile screen size, hide the large welcome text */
/* Only show the larger welcome text (on main page) on wider screens */
@media screen and (min-width: 851px) {
@media screen and (min-width: 1100px) {
   #welcome-text {display: none !important;}
   #welcome-text {display: block !important;}
}
}

Revision as of 22:20, 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;}

/* Only show the larger welcome text (on main page) on wider screens */
@media screen and (min-width: 1100px) {
  #welcome-text {display: block !important;}
}