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;}


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

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

@media screen and (min-width: 1100px) {
  /* Let the box containing the welcome content be larger on wider screens */
  #welcome-box {display: block !important;}
}