MediaWiki:Common.css: Difference between revisions

From Looney Pyramid Games Wiki
Content added Content deleted
imported>Lambda
(Ensure that background color is only overridden for screen display)
imported>Lambda
(Hide "Main Page" title to free up a little bit of space for the rest of the content)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* That Icehouse Wiki salmon background */
@media screen {
@media screen {
body, #mw-page-base { background: #ffe9cc; }
body, #mw-page-base { background: #ffe9cc; }
}
}

/* Hide the "Main Page" title to put a little more above the fold */
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; }

Revision as of 18:20, 10 November 2016

/* CSS placed here will be applied to all skins */

/* That Icehouse Wiki salmon background */
@media screen {
    body, #mw-page-base { background: #ffe9cc; }
}

/* Hide the "Main Page" title to put a little more above the fold */
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; }