MediaWiki:Common.css: Difference between revisions

From Comprehensible Input Wiki
Content added Content deleted
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Indent section contents on main page */
/* Main Page - Getting started box */
.page-Main_Page #mw-content-text > .mw-parser-output > #main-stuff > :not(h2):not(#toc){
margin-left: 10px;
}

/* Style input box in MediaWiki:Searchmenu-new */
#searchinputbox br {
display:none;
}
#searchinputbox .mw-inputbox-centered > form {
width: min-content;
}

/* Getting started box on Main Page */
#starting {
#starting {
border-style: solid;
border-style: solid;
Line 24: Line 10:
border-radius: 10px;
border-radius: 10px;
background-color: lightyellow;
background-color: lightyellow;
}

/* Main Page - Summary info */
#summary_link {
border-style: solid;
border-color: brown;
padding: 10px;
width: 80%;
margin: 28px auto;
border-radius: 10px;
background-color: lightyellow;
text-align: center;
}

/* MediaWiki:Searchmenu-new - Input box */
#searchinputbox br {
display:none;
}
#searchinputbox .mw-inputbox-centered > form {
width: min-content;
}
}

Revision as of 15:47, 16 December 2022

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

/* Main Page - Getting started box */
#starting {
	border-style: solid;
	border-color: green;
	padding: 10px;
	width: 80%;
	margin:28px auto;
	border-radius: 10px;
	background-color: lightyellow;
}

/* Main Page - Summary info */
#summary_link {
	border-style: solid;
	border-color: brown;
	padding: 10px;
	width: 80%;
	margin: 28px auto;
	border-radius: 10px;
	background-color: lightyellow;
	text-align: center;
}

/* MediaWiki:Searchmenu-new - Input box */
#searchinputbox br {
	display:none;
}
 
#searchinputbox .mw-inputbox-centered > form {
	width: min-content;
}