MediaWiki:Monobook.css

From the Star Wars Merchandise Wiki.
Jump to navigationJump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* <source lang="css"> */
/* CSS placed here will affect users of the Monobook skin */

/* Background color */
body {
	background: #f4f8ff;
}

/* Display text below main article header, located at MediaWiki:Tagline */
#siteSub {
	display: inline;
	font-size: 90%;
	font-weight: normal;
	font-style: italic;
}

/* rounded corners */
.pBody {
	border-top-right-radius: 0.5em;
	border-bottom-right-radius: 0.5em;
	-moz-border-radius-topright: 0.5em;
	-moz-border-radius-bottomright: 0.5em;
	padding: 0.1em 0.1em;
}

#p-cactions ul li, #p-cactions ul li a {
	border-top-right-radius: 0.5em;
	border-top-left-radius: 0.5em;
	-moz-border-radius-topright: 0.5em;
	-moz-border-radius-topleft: 0.5em;
}

#content {
	border-top-left-radius: 0.5em;
	border-top-right-radius: 0.5em;
	border-bottom-left-radius: 0.5em;
	border-bottom-right-radius: 0.5em;
	-moz-border-radius-topleft: 0.5em;
	-moz-border-radius-topright: 0.5em;
	-moz-border-radius-bottomleft: 0.5em;
	-moz-border-radius-bottomright: 0.5em;
}

div.tleft {
	border: none;
}

div.tright {
	margin-left: 13px;
}

/* Fix conflict between shortcut template and Send to a friend box */
#title-shortcut {
	margin: 40px -100px 0 0;
}

/* </source> */