ProleWiki:Main page/styles.css: Difference between revisions

From ProleWiki, the proletarian encyclopedia
(CSS that hides the title)
(Correcting CSS)
Line 39: Line 39:
*/
*/


div#content.mw-body h1#firstHeading.firstHeading {
h1#firstHeading {
display: none;
display: none;
}
}

Revision as of 00:04, 4 January 2021

/******************************
 * Styles for mobile main page
 ******************************/

@media all and (min-width: 768px) {
	.prolewiki-mainpage-column {
		float: left;
		width: 50%;
	}
	.prolewiki-mainpage-column-first {
		padding-right: 5px;
	}
	.prolewiki-mainpage-column-second {
		padding-left: 5px;
	}
	.prolewiki-mainpage-sister-projects {
		text-align: center;
	}
}

/**
 * Hide title on main pages, village pumps and project chats
 * 
 * @author 
 * @maintainer 
 */

body.action-view .firstHeading {
	display: none;
}

body.action-view #contentSub { 
	display: none;
}
/*
.page-ProleWiki_Main_page .firstHeading {
	display: none;
}
*/

h1#firstHeading {
	display: none;
}