Minecraft Wiki
Advertisement
In andere talen

Let op! Nadat u de wijzigingen hebt opgeslagen is het wellicht nodig uw browsercache te legen.

  • Firefox / Safari: houd ⇧ Shift ingedrukt terwijl u op Vernieuwen klikt of druk op Ctrl-F5 of Ctrl-R (-⇧ Shift-R op een Mac)
  • Google Chrome: druk op Ctrl-⇧ Shift-R (-⇧ Shift-R op een Mac)
  • Internet Explorer: houd Ctrl ingedrukt terwijl u op Vernieuwen klikt of druk op Ctrl-F5
  • Opera: leeg uw cache in Extra → Voorkeuren
/** Minecraft skin **/
.overlay.search-overlay,
.overlay.editor-overlay {
	padding-top: 90px;
}

/* Hide grass when editing on small screens to maximise editing space */
@media all and (max-width: 999px) {
	.overlay-enabled .editor-overlay {
		padding-top: 3.35em;
	}
	.overlay-enabled .overlay.editor-overlay .header-container:after {
		bottom: 0;
		background-position: left bottom -29px;
	}
}

.overlay .overlay-header-container.header-container {
	z-index: 2;
}

/* Use logo instead of text */
.branding-box {
	background: url(/media/9/90/Minecraft_Wiki_header.svg) center center no-repeat;
	background-size: 150px auto;
	text-indent: -9999px;
	min-height: 100%;
	min-width: 150px;
}
.branding-box a {
	height: 3.35em;
	width: 150px;
}
/* Left align on larger screens */
@media all and (min-width: 720px) {
	.branding-box {
		background-position: left center;
	}
}
/* Scale to fit on tiny screens */
@media all and (max-width: 374px) {
	.branding-box {
		background-size: contain;
	}
}

/* Hide duplicate sidebar entries */
.mw-ui-icon-minerva-home,
.mw-ui-icon-minerva-random {
	display: none;
}

/* Fix editor colour */
#wikitext-editor {
	background-color: #FFF;
}

/* Give the footer the stone texture: [[File:Background HiDPI.png]] */
.minerva-footer {
	background: url(/media/d/de/Background_HiDPI.png) #202020;
	background-size: 48px auto;
}

footer,
footer a:active,
#footer,
#footer a:active {
	color: #FFF;
}

footer a,
#footer a,
footer a:visited,
#footer a:visited {
    color: #BFBFBF;
}

/* Fix dumb default styling */
.content code,
.content pre {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	color: black;
}
.content code {
	border-radius: 2px;
}
@media all and (max-width: 768px) {
	.gallerybox .thumb > div {
		margin: 15px !important;
		width: auto !important;
	}
}

/* Use black bullet points, instead of blue circles: [[File:List bullet.svg]] */
.content ul {
	list-style-image: url(/media/3/39/List_bullet.svg);
}

/* Fix changes autocollapsing in recent changes */
.mw-changeslist-edit, .mw-changeslist-line {
	display: table-row !important;
}
.mw-changeslist-line-inner {
	padding-top: 1.5em;
}
.mw-enhanced-rc-nested {
    padding-top: 0.5em;
}

/** Template stylings **/
/* Alternating table rows, primarily used with [[Template:Infobox row]] */
.alternaterows tr:nth-child(even) {
	background-color: #F9F9F9;
}

/* Simulate link styling for JS only links */
.jslink {
	color: #0645AD;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
}
.jslink:hover {
	text-decoration: underline;
	cursor: pointer;
}
.jslink:active {
	color: #FAA700;
}

/* Horizontal list */
.content .hlist ul {
	display: inline;
	padding: 0;
}
.content .hlist li {
	display: inline-block;
	margin: 0;
	white-space: nowrap;
}
.content .hlist li:not(:last-child) {
	padding-right: 0.313em;
}
.content .hlist li:not(:last-child):after {
	content: "";
	display: inline-block;
	position: relative;
	left: 0.313em;
	bottom: 0.234em;
	background-color: #000;
	height: 3px;
	width: 3px;
}
.content .hlist li > ul li:first-child:before {
	content: "(";
}
.content .hlist li > ul li:last-child:after {
	content: ")";
	margin-right: -0.313em;
}
.content .hlist li li li {
	font-size: x-small;
}

/* Element animator */
.content .animated > *:not(.animated-active),
.content .animated > .animated-subframe > *:not(.animated-active) {
	display: none;
}

/* Try to use nearest neighbour scaling for pixelated images */
.pixel-image,
.invslot-item-image,
.sprite {
	image-rendering: optimizeSpeed;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: optimize-contrast;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	-ms-interpolation-mode: nearest-neighbor;
}

/* Remove bullets/numbers from a list */
.list-style-none ul,
.list-style-none ol {
	list-style: none;
	margin-left: 0;
}

.footer {
	clear:both;
}

/* Fix gallery */
ul.gallery li.gallerybox div.thumb {
	text-align: center;
}

ul.gallery li.gallerybox {
	display: inline-block;
	vertical-align: top;
}

ul.gallery {
	padding: 2px;
}

/* Hide things on mobile (the extension is meant to do this automatically, but it doesn't work) */
.nomobile {
	display: none;
}

/* Styling related to the infobox rows */
.content table:not(.infobox-rows) {
        width: auto !important;
}

.infobox-rows {
        width: 100% !important
}

/* Make sure the logo fits */
#mcw-logo img {
	max-width: 100%;
	height: auto;
}

/* [[Template:Hatnote]] */
.dablink {
	padding-left: 0.5em;
}
Advertisement