MediaWiki:Common.css

From RoR Wiki
Revision as of 17:15, 7 January 2021 by MaxHayman (talk | contribs)
Jump to: navigation, search

Note: After publishing, 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: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */

/* increase Vector sidebar width to accommodate ads */
div#mw-panel { width: 12em; }
div#footer, #mw-head-base, div#content { margin-left: 12em; }
#left-navigation { margin-left: 12em; }

/* Background image */
body.mediawiki {
   background-image: url("https://www.returnofreckoning.com/forum/styles/dawar/theme/images/theme/ror.jpg");
   background-position: center;
   background-size: 1275px;
   background-repeat: repeat !important;
}


	.grid-container {
		display: grid;
		grid-template-areas: 'header header header header header header' 'middle middle middle middle middle right' 'middle2 middle2 middle2 middle2 middle2 right' 'middle3 middle3 middle3 middle3 middle3 right' 'bottom bottom bottom bottom bottom right'
	}
	@media only screen and (max-width:80rem) {
		.grid-container {
			grid-template-areas: 'header header header header header header' 'middle middle middle middle right right' 'middle2 middle2 middle2 middle2 right right ' 'middle3 middle3 middle3 middle3 middle3 middle3' 'bottom bottom bottom bottom bottom bottom'
		}
	}
	@media only screen and (max-width:64rem) {
		.grid-container {
			grid-template-areas: 'header header header header header header' 'middle middle middle middle middle middle' 'middle2 middle2 middle2 middle2 middle2 middle2' 'middle3 middle3 middle3 middle3 middle3 middle3' 'right right right right right right' 'bottom bottom bottom bottom bottom bottom'
		}
	}
	.header {
		grid-area: header
	}
	.bottom {
		grid-area: bottom
	}
	.left {
		grid-area: left
	}
	.right {
		grid-area: right
	}
	.middle {
		grid-area: middle
	}
	.middle2 {
		grid-area: middle2
	}
	.middle3 {
		grid-area: middle3
	}