MediaWiki:Common.css: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
| No edit summary | No edit summary | ||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| /*  | /* need to setup $wgAllowSiteCSSOnRestrictedPages = true; in Localsettings.php */ | ||
| @import url("https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif"); | @import url("https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif"); | ||
| Line 15: | Line 15: | ||
| */ | */ | ||
| /* hide wiki status in account create*/ | |||
| .mw-createacct-benefits-container { | |||
|   display:none !important; | |||
| } | |||
| /* remove hamberger menu */ | /* remove hamberger menu */ | ||
| /*   | /*   | ||
| #mw-sidebar-button, .mw-logo-container { | #mw-sidebar-button, */ | ||
| .mw-logo-container { | |||
|    display:none;   |    display:none;   | ||
| }    | }    | ||
| .mw-logo-icon { | .mw-logo-icon { | ||
|    width:100%; |    width:100%; | ||
| } | } | ||
| .mainpage_row { | .mainpage_row { | ||
Latest revision as of 16:20, 4 May 2023
/* need to setup $wgAllowSiteCSSOnRestrictedPages = true; in Localsettings.php */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif");
body {font-family: "Noto Sans", sans-serif}
/* changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text) */
div#content h1, div#content h2 {font-family: "Noto Serif", serif}
/* changes the default font used for MediaWiki headings to Noto Serif */
/* by HPCMATE */
/*
.vector-sidebar-container {
  display : none;
} 
*/
/* hide wiki status in account create*/
.mw-createacct-benefits-container {
  display:none !important;
}
 
/* remove hamberger menu */
/* 
#mw-sidebar-button, */
 
.mw-logo-container {
  display:none; 
}  
.mw-logo-icon {
  width:100%;
}
.mainpage_row {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0 -5px 0 -5px;
}