MediaWiki:Monobook.css: Difference between revisions

From the Nintendo Wiki, a wiki covering all things Nintendo
Jump to navigationJump to search
Content added Content deleted
(does this fix it?)
(up top!!!!)
Line 49: Line 49:
#p-cactions .new a {
#p-cactions .new a {
color: #c00;
color: #c00;
}

/* put search bar up top */
#sidebar {
display: flex;
flex-direction: column;
}
#p-search {
order: -1;
}
}

Revision as of 20:39, March 3, 2022

/* All CSS here will be loaded for users of the MonoBook skin */

body {
    background: url(https://static.miraheze.org/nintendowiki/6/62/Nwbkgd.png);
}

body.skin--responsive .portlet {
    width: 11.8em;
}

/* search button */

input.searchButton {
	padding: 0 0.4em !important;
	cursor: pointer;
	background-color: white;
	border: 1px solid #2f6fab; 
	font-weight: normal;
} 
#searchGoButton {
	font-weight: normal;
}
#searchInput {
	border: 1px solid #2f6fab;
}

/* user link colors */
body.skin--responsive #p-personal a.new {
	color: #f00;
}
body.skin--responsive #p-personal a.new:visited {
	color: #c00;
}
body.skin--responsive #p-personal li a {
	color: #00f;
}
body.skin--responsive #p-personal li a:hover {
	background-color: none;
	text-decoration: underline;
}
body.skin--responsive #p-personal li {
	color: #606060;
}

/* tab link colors */
#p-cactions li a {
	color: #00c;
}
#p-cactions .new a {
	color: #c00;
}

/* put search bar up top */
#sidebar {
    display: flex;
    flex-direction: column;
}
#p-search {
    order: -1;
}