MediaWiki:Common.css: Difference between revisions

From WikiIndex
Jump to navigation Jump to search
(Fix reported errors on lines 9 & 14)
(Category pages, remove bullets from sub-category lists)
Line 6: Line 6:
}
}


/* No page name on main page (en) */
/* No page name on main page */
.page-Welcome .firstHeading {
.page-Welcome .firstHeading {
display: none;
display: none;
Line 14: Line 14:
.smwtt {
.smwtt {
font-size: 127%;
font-size: 127%;
}
/* Category pages, remove bullets from sub-category lists
*
*/
#mw-subcategories ul, .mw-special-Categories ul {
margin-left: 0;
}
#mw-subcategories li, .mw-special-Categories li {
display: block;
}
}

Revision as of 00:14, 18 February 2020

/* CSS placed here will affect all skins */

/* Italicize redirects in [[Special:AllPages]] */
.allpagesredirect {
	font-style: italic;
}

/* No page name on main page */
.page-Welcome .firstHeading {
	display: none;
}

/* Make the info in the semantic bubbles readable */
.smwtt {
	font-size: 127%;
}

/* Category pages, remove bullets from sub-category lists
 *
 */
#mw-subcategories ul, .mw-special-Categories ul {
	margin-left: 0;
}
#mw-subcategories li, .mw-special-Categories li {
	display: block;
}