MediaWiki:Monobook.css: Difference between revisions

From The Birdhouse
Jump to navigationJump to search
Created page with "All CSS here will be loaded for users of the MonoBook skin: font size: @media screen { #globalWrapper { font-size: 15px; } } fixes big logo: .mw-wiki-logo { background-size: contain; }"
 
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the MonoBook skin */
/* All CSS here will be loaded for users of the MonoBook skin */


/* font size */
@media screen {
@media screen {
  #globalWrapper {
body {
    font-size: 15px;
background: #c8dbff;
}
#globalWrapper {
font-size: 15px;
  }
.mw-body { border-color: #4676c0; }
.mw-footer {
border-top: 1px solid #4676c0;
border-bottom: 1px solid #4676c0;
   }
   }
}
}
Line 12: Line 19:
background-size: contain;
background-size: contain;
}
}
/* top of page tabs */
body.skin--responsive #p-cactions li {
padding: 0.5em 0 1em 0;
}
body.skin--responsive #p-cactions li.selected {
border-color: #4676c0;
}
hr { background-color: #4676c0; }

Revision as of 20:22, 21 September 2025

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

@media screen {
	body {
		background: #c8dbff;
	}
	#globalWrapper {
		font-size: 15px;
  }
	.mw-body { border-color: #4676c0; }
	.mw-footer {
		border-top: 1px solid #4676c0;
		border-bottom: 1px solid #4676c0;
  }
}

/* fixes big logo */
.mw-wiki-logo {
	background-size: contain;
}

/* top of page tabs */
body.skin--responsive #p-cactions li {
	padding: 0.5em 0 1em 0;
}
body.skin--responsive #p-cactions li.selected {
	border-color: #4676c0;
}

hr { background-color: #4676c0; }