Zum Inhalt springen

MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus BLGBL
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 57: Zeile 57:


/* References */
/* References */
.reference {
    content: counter(mw-ref);
text-decotration: none !important;
}


ol.references .mw-cite-backlink {
ol.references .mw-cite-backlink {

Version vom 18. September 2025, 07:14 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

@media screen {
  /*.vector-feature-zebra-design-disabled .vector-header-container {
    padding-right: 5em !important;
  }*/
	:root {
		--color-link: #666;
		--color-link-visited: #555;
		--color-visited--hover: #534fa3;
	}
	.vector-page-titlebar {
		box-shadow: none !important;
	}
	.vector-page-titlebar::after {
		display: none;
	}
	.mw-heading,
	.firstHeading {
		border-bottom: none !important;
		color: #b2292e;
	}
	.firstHeading {
		font-weight: 700;
	}
	.mw-body,
	.mw-body-content,
	.mw-heading,
	.firstHeading,
	.mw-body h1, 
	.mw-body .mw-heading1, 
	.mw-body-content h1, 
	.mw-body-content .mw-heading1, 
	.mw-body-content h2, 
	.mw-body-content .mw-heading2 {
		font-family: "Minion Pro", minion-pro, serif !important;
	}

	.vector-body {
		font-family: "Minion Pro",minion-pro,serif;
		/*font-size: 1.2rem;*/
	}

	a {
		text-decoration: underline;
	}

}
a {
	color: #666;
	text-decoration: underline;
}
a:visited {
	color: #666;
	text-decoration: underline;
}

/* References */
.reference {
    content: counter(mw-ref);
	text-decotration: none !important;
}

ol.references .mw-cite-backlink {
    display: none;
}

ol.references {
    list-style: none !important;
    counter-reset: mw-ref;
    margin-left: 0;
    padding-left: 0;
}

/* Add [n] as superscript */
ol.references > li:before {
    counter-increment: mw-ref;
    content: "[" counter(mw-ref) "]";
    vertical-align: super;
    font-size: smaller;
    margin-right: 0.25em;
    color: #666;
}

ol.references > li::before {
    content: "[" counter(mw-ref) "]";
}

ol.references > li > .mw-cite-backlink a {
    position: absolute;
    /* you can fine-tune to overlay the number */
    width: 1em;
    height: 1em;
    overflow: hidden;
    text-indent: -9999px;
}