Minecraft Wiki
Advertisement
In anderen Sprachen

Hinweis: Leere nach dem Speichern den Browser-Cache, um die Änderungen sehen zu können.

  • Firefox/Safari: ⇧ Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Ctrl + F5 oder Ctrl + R (⌘ Cmd + R auf dem Mac) drücken
  • Google Chrome: Ctrl + ⇧ Umschalttaste + R (⌘ Cmd + ⇧ Umschalttaste + R auf dem Mac) drücken
  • Internet Explorer: Ctrl + F5 drücken oder Ctrl drücken und gleichzeitig Aktualisieren anklicken
  • Opera: Extras → Internetspuren löschen … → Individuelle Auswahl → Den kompletten Cache löschen
/* Minecraft font */
@font-face {
	font-family: Minecraft;
	src: url('/media/hydra/fonts/minecraft.eot?#iefix') format('embedded-opentype'),
		 url('/media/hydra/fonts/minecraft.woff') format('woff'),
		 url('/media/hydra/fonts/minecraft.ttf') format('truetype');
}

body.theme-fandomdesktop-dark {
	--custom-mc-border: #444;
	--custom-mc-background: #282828;
	--custom-mc-background2: #363b48;
	--custom-mc-background-green: #475247;
	--custom-mc-border-green: #5e705e;
	--custom-mc-background-orange: #565349;
	--custom-mc-border-orange: #746c5f;
	--custom-mc-background-light-blue: #434e54;
	--custom-mc-border-light-blue: #5a626e;
	--custom-mc-background-blue: #485364;
	--custom-mc-border-blue: #5c6572;
	--custom-mc-background-purple: #4a4650;
	--custom-mc-border-purple: #615b6e;
	--custom-mc-background-gray: #505050;
	--custom-mc-border-gray: #707070;
	
	--custom-border-mainpage: #535b6c;
	--custom-background-mainpage: #404654;
	--custom-background-mainpage-container: #363b48;
	--custom-background-mainpage-container--hover: #323642;
	
	--theme-alert-color: #f1748b;
	--theme-page-background-color--secondary: #373f50;
}

body.theme-fandomdesktop-light {
	--custom-mc-border: #ccc;
	--custom-mc-background: #FCFCFC;
	--custom-mc-background2: #c9d6e1;
	--custom-mc-background-green: #cee7ce;
	--custom-mc-border-green: #8fbc8f;
	--custom-mc-background-orange: #e7ddca;
	--custom-mc-border-orange: #bcad8f;
	--custom-mc-background-light-blue: #cddde7;
	--custom-mc-border-light-blue: #85a7d6;
	--custom-mc-background-blue: #cfdbed;
	--custom-mc-border-blue: #8fa2bc;
	--custom-mc-background-purple: #d9d6e1;
	--custom-mc-border-purple: #ab9dc5;
	--custom-mc-background-gray: #e0e0e0;
	--custom-mc-border-gray: #9e9e9e;
	
	--custom-border-mainpage: #bfced7;
	--custom-background-mainpage: #d7e1e9;
	--custom-background-mainpage-container: #c9d6e1;
	--custom-background-mainpage-container--hover: #bdcdda;
	
	--theme-alert-color: #ba1231;
	--theme-page-background-color--secondary: #f8f9fa;
}

/* Fix treeview overlapping floating content */
div.thumb {
	position: relative;
	z-index: 1;
}

/* Horizontal list */
.page-content .hlist ul,
#bodyContent .hlist ul {
	display: inline;
	margin: 0;
	padding: 0;
}
.page-content .hlist li,
#bodyContent .hlist li {
	display: inline;
}
.page-content .hlist li:not(:last-child),
#bodyContent .hlist li:not(:last-child) {
	padding-right: 0.286em;
}
.page-content .hlist li:not(:last-child)::after,
#bodyContent .hlist li:not(:last-child)::after {
	content: "";
	display: inline-block;
	position: relative;
	left: 0.286em;
	bottom: 0.214em;
	background-color: #000;
	height: 3px;
	width: 3px;
}
.page-content .hlist li li:first-child::before,
#bodyContent .hlist li li:first-child::before {
	content: "(";
	font-weight: normal;
}
.page-content .hlist li li:last-child::after,
#bodyContent .hlist li li:last-child::after {
	content: ")";
	font-weight: normal;
}
.page-content .hlist li li li,
#bodyContent .hlist li li li {
	font-size: x-small;
}

/* Element animator */
#bodyContent .animated > *:not(.animated-active),
#bodyContent .animated > .animated-subframe > *:not(.animated-active),
.page-content .animated > *:not(.animated-active),
.page-content .animated > .animated-subframe > *:not(.animated-active) {
	display: none;
}
#bodyContent span.animated,
#bodyContent span.animated.animated-visible > *,
#bodyContent span.animated.animated-visible > .animated-subframe > *,
.page-content span.animated,
.page-content span.animated.animated-visible > *,
.page-content span.animated.animated-visible > .animated-subframe > * {
	display: inline-block;
}
#bodyContent div.animated.animated-visible > *,
#bodyContent div.animated.animated-visible > .animated-subframe > *,
.page-content div.animated.animated-visible > *,
.page-content div.animated.animated-visible > .animated-subframe > * {
	display: block;
}

/* Generic nowrap class */
.nowrap {
	white-space: nowrap;
}

/* Hide noscript only elements */
.client-js .noscript {
	display: none;
}

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

/* Allow setting the text alignment of particular table columns */
.col-1-left td:nth-child(1),
.col-2-left td:nth-child(2),
.col-3-left td:nth-child(3),
.col-4-left td:nth-child(4),
.col-5-left td:nth-child(5),
.col-6-left td:nth-child(6),
.col-7-left td:nth-child(7),
.col-8-left td:nth-child(8),
.col-9-left td:nth-child(9) {
	text-align: left;
}
.col-1-center td:nth-child(1),
.col-2-center td:nth-child(2),
.col-3-center td:nth-child(3),
.col-4-center td:nth-child(4),
.col-5-center td:nth-child(5),
.col-6-center td:nth-child(6),
.col-7-center td:nth-child(7),
.col-8-center td:nth-child(8),
.col-9-center td:nth-child(9) {
	text-align: center;
}
.col-1-right td:nth-child(1),
.col-2-right td:nth-child(2),
.col-3-right td:nth-child(3),
.col-4-right td:nth-child(4),
.col-5-right td:nth-child(5),
.col-6-right td:nth-child(6),
.col-7-right td:nth-child(7),
.col-8-right td:nth-child(8),
.col-9-right td:nth-child(9) {
	text-align: right;
}

/* Centre lists in custom CE TOC */
.toc.console-toc ul {
	text-align: center;
}

/* Bold text in a table header cell shouldn't get extra bold */
b,
strong {
	font-weight: bold;
}

/** Wiki-Geburtstag 2017 **/
/* Minepedia-Logo */
.minepedia-logo {
	width: 100%;
	padding-bottom: 14%;
	background-image: url("https://static.wikia.nocookie.net/minecraft_de_gamepedia/images/5/50/Minepedia.png/revision/latest");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.homepage-button {
	font-size: 20px;
	padding: 10px;
	padding-left: 40px;
	border-radius: 10px;
	background-color: #B4BEC3;
	color: #628fbf;
	transition: background 0.5s, color 0.5s;
	background-image: url("https://static.wikia.nocookie.net/minecraft_de_gamepedia/images/2/2e/W%C3%BCrfelLogo_ohne_Schrift.png/revision/latest");
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 10px center;
	white-space: nowrap;
}

.homepage-button:hover {
	background-color: #949EA3;
	color: #3465a4;
}

.homepage-link a:hover {
	text-decoration: none !important;
}

@media (max-width: 1350px) {
	.cake-1 { display: none }
}

@media (max-width: 1100px) {
	.cake-2 { display: none }
}

@media (max-width: 800px) {
	.cake-3 { display: none }
}

/* Dark skin */
.theme-fandomdesktop-dark #catlinks,
.theme-fandomdesktop-dark #toc,
.theme-fandomdesktop-dark .toc,
.theme-fandomdesktop-dark .mw-warning,
.theme-fandomdesktop-dark .mcwiki-projekt {
	background-color: #282828;
	border-color: #444;
}

/* Fix placeholder text being too light in chrome */
::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}

/* Add white background to some areas */
#asirra_ChallengeTableDiv {
	background-color: #FFF;
}

/* Fix diff area styling */
table.diff,
td.diff-otitle, 
td.diff-ntitle {
	background-color: transparent;
}
td.diff-addedline,
td.diff-deletedline,
td.diff-context,
td.diff-addedline .diffchange,
td.diff-deletedline .diffchange {
	border-radius: 0;
}

/** Template stylings **/
/* [[Vorlage:Navbox]] */
/* All stylings here are defined an extra time for [[Vorlage:Geschichtlich]] because the mobile skin extension is stupid */
.navbox,
.historybox {
	background: #FFF;
	border: 1px solid #CCC;
	margin: 1em auto 0;
	width: 100%;
}
.theme-fandomdesktop-dark .navbox,
.theme-fandomdesktop-dark .historybox {
	background-color: #282828;
	border-color: #444;
}

.navbox table,
.historybox table {
	background: #FFF;
	margin-left: -4px;
	margin-right: -2px;
}
.theme-fandomdesktop-dark .navbox table,
.theme-fandomdesktop-dark .historybox table {
	background-color: #282828;
}
.navbox table:first-child,
.historybox table:first-child {
	margin-top: -2px;
}

.navbox .navbox-top,
.historybox .historybox-top {
	white-space: nowrap;
	background-color: #CCC;
	padding: 0 3px;
	text-align: center;
}
.theme-fandomdesktop-dark .navbox .navbox-top,
.theme-fandomdesktop-dark .historybox .historybox-top {
	background-color: #111;
}

.navbox-navbar,
.navbox-navbar-mini,
.historybox-navbar, 
.historybox-navbar-mini {
	float: left;
	font-size: 80%;
}

.navbox-title,
.historybox-title {
	padding: 0 10px;
	font-size: 110%;
}

.navbox th,
.historybox th {
	background-color: #EEE;
	padding: 0 10px;
	white-space: nowrap;
	text-align: right;
}
.theme-fandomdesktop-dark .navbox th,
.theme-fandomdesktop-dark .historybox th {
	background-color: #222;
}

.navbox td,
.historybox td {
	width: 100%;
	padding: 0 0 0 2px;
}

/* Alternating cell background */
.alternatecells:nth-child(odd) {
	background-color: #F9F9F9;
}

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

/* Simulate link styling for JS only links */
.theme-fandomdesktop-light .jslink {
	color: #0645AD;
	user-select: none;
}
.theme-fandomdesktop-dark .jslink {
	color: #5a93cc;
	user-select: none;
}
.jslink:hover {
	text-decoration: underline;
	cursor: pointer;
}
.jslink:active {
	color: #FAA700;
}

/* table */
.navbox,
.navbox table,
.historybox,
.historybox table {
	border-collapse: separate;
	border-spacing: 2px;
}

.theme-fandomdesktop-dark .mw-datatable,
.theme-fandomdesktop-dark table.mw_metadata,
.theme-fandomdesktop-dark .mw-datatable th,
.theme-fandomdesktop-dark table.mw_metadata th,
.theme-fandomdesktop-dark .mw-datatable td,
.theme-fandomdesktop-dark table.mw_metadata td,
.theme-fandomdesktop-dark .wikitable,
.theme-fandomdesktop-dark .wikitable > tr > th,
.theme-fandomdesktop-dark .wikitable > tr > td,
.theme-fandomdesktop-dark .wikitable > * > tr > th,
.theme-fandomdesktop-dark .wikitable > * > tr > td {
	border-color: #444;
}

.theme-fandomdesktop-dark .mw-datatable th,
.theme-fandomdesktop-dark table.mw_metadata th,
.theme-fandomdesktop-dark .wikitable > tr > th,
.theme-fandomdesktop-dark .wikitable > * > tr > th {
	background-color: #111;
}

.theme-fandomdesktop-dark .mw-datatable,
.theme-fandomdesktop-dark table.mw_metadata,
.theme-fandomdesktop-dark .mw-datatable td,
.theme-fandomdesktop-dark table.mw_metadata td,
.theme-fandomdesktop-dark .wikitable {
	background-color: #282828;
}

.theme-fandomdesktop-dark #mw-allmessagestable tbody:hover td,
.theme-fandomdesktop-dark .mw-datatable tr:hover td {
	background-color: #222;
}

/* Collapsible elements ([[MediaWiki:Common.js]]) */
.collapsible.collapsed > tr:not(:first-child),
.collapsible.collapsed > tbody > tr:not(:first-child),
.collapsible.collapsed > thead + tbody > tr:first-child,
.collapsible.collapsed > tbody + tbody > tr:first-child,
.collapsible.collapsed > tfoot > tr,
.collapsible.collapsed > .collapsible-content {
	display: none;
}

.collapsetoggle {
	display: inline-block;
	font-weight: normal;
	font-style: normal;
	float: right;
	text-align: right;
	margin-left: 0.8em;
}
.collapsetoggle-left > tr > * > .collapsetoggle,
.collapsetoggle-left > * > tr > * > .collapsetoggle,
.collapsetoggle-left > * > .collapsetoggle,
.collapsetoggle-left > .collapsetoggle {
	float: left;
	text-align: left;
	margin-right: 0.8em;
	margin-left: 0;
}
.collapse-button-none > * > tr > * > .collapsetoggle,
.collapsetoggle-inline > tr > * > .collapsetoggle,
.collapsetoggle-inline > * > tr > * > .collapsetoggle,
.collapsetoggle-inline > * > .collapsetoggle,
.collapsetoggle-inline > .collapsetoggle {
	float: none;
	text-align:left;
}

.collapsetoggle-custom {
	visibility: hidden;
}

/* Allow parts of toc to be hidden */
/* Section levels */
.toc-hidelevel2 .toclevel-1 ul,
.toc-hidelevel3 .toclevel-2 ul,
.toc-hidelevel4 .toclevel-3 ul,
/* Numbers */
.toc-nonumbers .tocnumber {
	display: none;
}

/* Turn a list into a tree view style (See [[.minecraft]]) */
.treeview {
	margin-top: 0.3em;
}

.treeview .treeview-header {
	padding-left: 3px;
	font-weight: bold;
}
.treeview .treeview-header:last-child {
	border-color: #636363 !important;
	border-left-style: dotted;
}
.treeview .treeview-header:not(:last-child)::before {
	content: none;
}
.treeview .treeview-header:last-child::before {
	border-bottom: 0;
}

.treeview ul,
.treeview li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}

.treeview li li {
	position: relative;
	padding-left: 13px;
	margin-left: 7px;
	border-left: 1px solid #636363;
}
.treeview li li::before {
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
	width: 11px;
	height: 11px;
	border-bottom: 1px solid #636363;
}

.treeview li li:last-child:not(.treeview-continue) {
	border-color: transparent;
}
.treeview li li:last-child:not(.treeview-continue)::before {
	border-left: 1px solid #636363;
	width: 10px;
}

.nbttree-inherited {
	background-color: #E6E6FA;
}

/* Try to use nearest neighbour scaling for pixelated images */
.historybox .image > img,
.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;
}

/* Add [[File:Mojang logo.svg|14px]] to known Mojang employee userlinks */
.mw-userlink[href="/Benutzer:C418bla"], .mw-userlink[href="/index.php?title=Benutzer%3AC418bla"],
.mw-userlink[href="/Benutzer:Dinnerbone"], .mw-userlink[href="/index.php?title=Benutzer%3ADinnerbone"],
.mw-userlink[href="/Benutzer:ExcitedZe"], .mw-userlink[href="/index.php?title=Benutzer%3AExcitedZe"],
.mw-userlink[href="/Benutzerin:HelenAngel"], .mw-userlink[href="/index.php?title=Benutzer%3AHelenAngel"],
.mw-userlink[href="/Benutzer:Jeb"], .mw-userlink[href="/index.php?title=Benutzer%3AJeb"],
.mw-userlink[href="/Benutzer:Jeb_mojang"], .mw-userlink[href="/index.php?title=Benutzer%3AJeb_mojang"],
.mw-userlink[href="/Benutzer:Jocopa3"], .mw-userlink[href="/index.php?title=Benutzer%3AJocopa3"],
.mw-userlink[href="/Benutzer:Jonkagstrom47437"], .mw-userlink[href="/index.php?title=Benutzer%3AJonkagstrom47437"],
.mw-userlink[href="/Benutzer:MarcWatson"], .mw-userlink[href="/index.php?title=Benutzer%3AMarcWatson"],
.mw-userlink[href="/Benutzer:MidnightEnforcer"], .mw-userlink[href="/index.php?title=Benutzer%3AMidnightEnforcer"],
.mw-userlink[href="/Benutzer:Minecraft_Staff"], .mw-userlink[href="/index.php?title=Benutzer%3AMinecraft_Staff"],
.mw-userlink[href="/Benutzer:Mojang_tommo"], .mw-userlink[href="/index.php?title=Benutzer%3AMojang_tommo"],
.mw-userlink[href="/Benutzer:Neon Master"], .mw-userlink[href="/index.php?title=Benutzer%3ANeon Master"],
.mw-userlink[href="/Benutzer:Slicedlime"], .mw-userlink[href="/index.php?title=Benutzer%3ASlicedlime"],
.mw-userlink[href="/Benutzer:Tamerjeison"], .mw-userlink[href="/index.php?title=Benutzer%3ATamerjeison"],
.mw-userlink[href="/Benutzer:Ulraf"], .mw-userlink[href="/index.php?title=Benutzer%3AUlraf"] {
	padding-left: 17px;
	background: url(https://images.wikia.com/minecraft_de_gamepedia/images/thumb/a/ad/Mojang_logo.svg/14px-Mojang_logo.svg) no-repeat left center;
}

/* Add [[File:Graues Mojang Logo.png]] to known ex-Mojang employee userlinks */
.mw-userlink[href="/Benutzer:EvilSeph"], .mw-userlink[href="/index.php?title=Benutzer%3AEvilSeph"],
.mw-userlink[href="/Benutzer:Neon_Master"], .mw-userlink[href="/index.php?title=Benutzer%3ANeon_Master"],
.mw-userlink[href="/Benutzer:RazzleberryFox"], .mw-userlink[href="/index.php?title=Benutzer%3ARazzleberryFox"],
.mw-userlink[href="/Benutzer:Tahg"], .mw-userlink[href="/index.php?title=Benutzer%3ATahg"] {
	padding-left: 17px;
	background: url(https://static.wikia.nocookie.net/minecraft_de_gamepedia/images/6/61/Graues_Mojang_Logo.png/revision/latest) no-repeat left center;
}

/* Add [[File:Gamepedia icon.png|15px]] to Gamepedia staff userlinks */
.mw-userlink[href="/Benutzerin:Alianin"], .mw-userlink[href="/index.php?title=Benutzer%3AAlianin"],
.mw-userlink[href="/Benutzer:Azgoodaz"], .mw-userlink[href="/index.php?title=Benutzer%3AAzgoodaz"],
.mw-userlink[href="/Benutzer:Encredechine"], .mw-userlink[href="/index.php?title=Benutzer%3AEncredechine"],
.mw-userlink[href="/Benutzerin:Ferretwings"], .mw-userlink[href="/index.php?title=Benutzer%3AFerretwings"],
.mw-userlink[href="/Benutzerin:Ferthi"], .mw-userlink[href="/index.php?title=Benutzer%3AFerthi"],
.mw-userlink[href="/Benutzer:Furl"], .mw-userlink[href="/index.php?title=Benutzer%3AFurl"],
.mw-userlink[href="/Benutzerin:Game_widow"], .mw-userlink[href="/index.php?title=Benutzer%3AGame_widow"],
.mw-userlink[href="/Benutzer:CuBaN VeRcEttI"], .mw-userlink[href="/index.php?title=Benutzer%3ACuBaN_VeRcEttI"],
.mw-userlink[href="/Benutzer:HeyTots"], .mw-userlink[href="/index.php?title=Benutzer%3AHeyTots"],
.mw-userlink[href="/Benutzer:MannedTooth"], .mw-userlink[href="/index.php?title=Benutzer%3AMannedTooth"],
.mw-userlink[href="/Benutzer:MarkusRost"], .mw-userlink[href="/index.php?title=Benutzer%3AMarkusRost"],
.mw-userlink[href="/Benutzer:Misterwoodhouse"], .mw-userlink[href="/index.php?title=Benutzer%3AMisterwoodhouse"],
.mw-userlink[href="/Benutzer:Mr_Pie_5"], .mw-userlink[href="/index.php?title=Benutzer%3AMr_Pie_5"],
.mw-userlink[href="/Benutzer:SBEyes"], .mw-userlink[href="/index.php?title=Benutzer%3ASBEyes"],
.mw-userlink[href="/Benutzer:Pcj"], .mw-userlink[href="/index.php?title=Benutzer%3APcj"],
.mw-userlink[href="/Benutzer:ReedemtheD3ad!"], .mw-userlink[href="/index.php?title=Benutzer%3AReedemtheD3ad!"],
.mw-userlink[href="/Benutzer:RheingoldRiver"], .mw-userlink[href="/index.php?title=Benutzer%3ARheingoldRiver"],
.mw-userlink[href="/Benutzer:Sitb"], .mw-userlink[href="/index.php?title=Benutzer%3ASitb"],
.mw-userlink[href="/Benutzer:Surafbrov"], .mw-userlink[href="/index.php?title=Benutzer%3ASurafbrov"],
.mw-userlink[href="/Benutzer:Tagaziel"], .mw-userlink[href="/index.php?title=Benutzer%3ATagaziel"],
.mw-userlink[href="/Benutzer:Wagnike2"], .mw-userlink[href="/index.php?title=Benutzer%3AWagnike2"] {
	padding-left: 18px;
	background: url(https://images.wikia.com/minecraft_de_gamepedia/images/thumb/0/07/Gamepedia_icon.png/15px-Gamepedia_icon.png) no-repeat left center;
}

/* Mark internal links as plain */
#content a.external[href^="https://minecraft.gamepedia.com"],
#content a.external[href^="https://minecraft-de.gamepedia.com"],
#content a.external[href^="//minecraft.gamepedia.com"],
#content a.external[href^="//minecraft-de.gamepedia.com"],
#content a.external[href^="https://minecraft.fandom.com"],
#content a.external[href^="//minecraft.fandom.com"] {
	background: none;
	padding-right: 0;
}

/* Classes corresponding to Minecraft formatting codes */
.format-0 {
	color: #000;
	text-shadow: 0.125em 0.125em 0 #000;
}
.format-1 {
	color: #0000A8;
	text-shadow: 0.125em 0.125em 0 #00002A;
}
.format-2 {
	color: #00A800;
	text-shadow: 0.125em 0.125em 0 #002A00;
}
.format-3 {
	color: #00A8A8;
	text-shadow: 0.125em 0.125em 0 #002A2A;
}
.format-4 {
	color: #A80000;
	text-shadow: 0.125em 0.125em 0 #2A0000;
}
.format-5 {
	color: #A800A8;
	text-shadow: 0.125em 0.125em 0 #2A002A;
}
.format-6 {
	color: #FBA800;
	text-shadow: 0.125em 0.125em 0 #3E2A00;
}
.format-7 {
	color: #A8A8A8;
	text-shadow: 0.125em 0.125em 0 #2A2A2A;
}
.format-8 {
	color: #545454;
	text-shadow: 0.125em 0.125em 0 #151515;
}
.format-9 {
	color: #5454FB;
	text-shadow: 0.125em 0.125em 0 #15153E;
}
.format-a {
	color: #54FB54;
	text-shadow: 0.125em 0.125em 0 #153E15;
}
.format-b {
	color: #54FBFB;
	text-shadow: 0.125em 0.125em 0 #153E3E;
}
.format-c {
	color: #FB5454;
	text-shadow: 0.125em 0.125em 0 #3E1515;
}
.format-d {
	color: #FB54FB;
	text-shadow: 0.125em 0.125em 0 #3E153E;
}
.format-e {
	color: #FBFB54;
	text-shadow: 0.125em 0.125em 0 #3E3E15;
}
.format-f,
#minetip-tooltip {
	color: #FBFBFB;
	text-shadow: 0.125em 0.125em 0 #3E3E3E;
}
.format-g {
	color: #DDD605;
	text-shadow: 0.125em 0.125em 0 #373501;
}
.format-l {
	font-weight: bold;
	letter-spacing: 0.125em;
}
.format-m {
	text-decoration: line-through;
}
.format-n {
	text-decoration: underline;
}
.format-o {
	font-style: italic;
}
/* Classes corresponding to Minecraft armor trim colors */
/* emerald */
.format-E {
	color: #119E35;
	text-shadow: 0.125em 0.125em 0 #04280D;
}
/* redstone */
.format-R {
	color: #951607;
	text-shadow: 0.125em 0.125em 0 #250501;
}
/* lapis lazuli */
.format-L {
	color: #406D95;
	text-shadow: 0.125em 0.125em 0 #101B25;
}
/* diamond */
.format-D {
	color: #6DE9D0;
	text-shadow: 0.125em 0.125em 0 #1B3A33;
}
/* quarz */
.format-Q {
	color: #E0D1C2;
	text-shadow: 0.125em 0.125em 0 #373430;
}
/* amethyst */
.format-A {
	color: #985BC4;
	text-shadow: 0.125em 0.125em 0 #261730;
}
/* iron */
.format-I {
	color: #E9E9E9;
	text-shadow: 0.125em 0.125em 0 #3A3A3A;
}
/* copper */
.format-C {
	color: #B2674C;
	text-shadow: 0.125em 0.125em 0 #2C1A13;
}
/* gold */
.format-G {
	color: #DBAF2C;
	text-shadow: 0.125em 0.125em 0 #362B0B;
}
/* netherite */
.format-N {
	color: #615758;
	text-shadow: 0.125em 0.125em 0 #181616;
}
.format-custom {
	text-shadow: none;
}

/* Styling for minecraft style tooltip */
#minetip-tooltip {
	background-color: #100010;
	background-color: rgba(16, 0, 16, 0.94);
	font-family: Minecraft, sans-serif;
	font-size: 16px;
	margin: 0.125em 0.25em;
	left: 0;
	line-height: 1.25em;
	padding: 0.375em;
	pointer-events: none;
	position: fixed;
	top: 0;
	white-space: nowrap;
	word-spacing: 4px;
	z-index: 9999;
}
#minetip-tooltip::before {
	border: 0.125em solid #100010;
	border-style: none solid;
	border-color: rgba(16, 0, 16, 0.94);
	bottom: 0.125em;
	content: "";
	left: -0.125em;
	position: absolute;
	right: -0.125em;
	top: 0.125em;
}
#minetip-tooltip::after {
	border: 0.125em solid #2D0A63;
	border-image: linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1;
	bottom: 0.125em;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0.125em;
}

#minetip-tooltip > .description,
#minetip-tooltip > .minetip-description {
	display: block;
	margin-top: 0.25em;
}

/* prevent sitenotice show/hide toggle from moving page contents down after pageload */
.globalNotice .globalNoticeDismiss {
	float: right;
}

/* dunkle Bilder im dunklen Aussehen */
body.theme-fandomdesktop-dark img[data-image-name="Crowdin.svg"] {
	filter: hue-rotate(180deg) invert(100%) saturate(.6) brightness(2);
}

.translation {
	cursor: help;
	background-color: #eeeeee;
}
.theme-fandomdesktop-dark .translation {
	background-color: #505050;
}

/* position:sticky fix */
#content {
	overflow-x: inherit;
}

/* remove add category module 
   DO NOT COPY WITHOUT STAFF'S PERMISSION */
.categories:first-child li:nth-last-child(2) {
    border: none !important;
}
.categories li.last {
	display: none !important;
}

/* important */
@keyframes zooming {
  0% {
    scale: .5;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: .5;
  }
}
table.achtung.wikigg {
  animation: zooming 2s linear infinite;
}
Advertisement