MediaWiki:Common.css: Difference between revisions

From Fortress Blast
Jump to navigationJump to search
No edit summary
No edit summary
Line 7: Line 7:


/* Disable all lowercase for sidebar headings */
/* Disable all lowercase for sidebar headings */
.portlet h3 {
#sidebar div h3 {
     text-transform: none;
     text-transform: none;
}
}

Revision as of 21:36, 30 January 2020

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

/* Removes fancy default background */
body {
    background: white;
}

/* Disable all lowercase for sidebar headings */
#sidebar div h3 {
    text-transform: none;
}

/* Removes title from main and disclaimers pages */
.page-Main_Page #content #firstHeading, .page-Fortress_Blast_General_disclaimer #content #firstHeading {
    display: none;
}

/* Removes Jump text from the tops of all pages
#jump-to-nav {
    display: none;
} */