MediaWiki:Vector.css: Unterschied zwischen den Versionen

Aus wiki.danokar.de
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
/* === Seitenhintergründe und Texte === */
/* Logo skalieren */
html,
#p-logo a {
body,
   background-size: contain !important;
#mw-page-base,
   background-repeat: no-repeat;
#mw-head-base,
   background-position: center center;
#content,
   height: 160px !important; /* Höhe des Logos */
#bodyContent,
   width: 160px !important; /* Breite des Logos */
.mw-body,
   display: block;
.mw-parser-output,
.mw-body-content {
  background-color: #2a2a2a !important;
  color: #e0e0e0 !important;
}
 
/* Überschriften */
h1, h2, h3, h4, h5 {
  color: #ffffff !important;
}
 
/* Abschnittsüberschriften */
.mw-headline {
  color: #ffffff !important;
}
 
/* Inhaltsverzeichnis */
#toc {
  background-color: #333 !important;
  border: 1px solid #444;
}
#toc a {
  color: #aad7ff !important;
}
 
/* === Links allgemein === */
a,
.mw-parser-output a {
  color: #8dcaff !important;
}
a:visited {
  color: #c7aaff !important;
}
a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}
/* Rote Links (nicht existierende Seiten) */
a.new {
  color: #ff5a5a !important;
}
 
/* === Sidebar (linkes Menü) === */
#mw-panel {
   background-color: #3a3a3a !important;
  color: #f0f0f0 !important;
}
.portlet h3 {
  color: #ffffff !important;
  font-weight: bold;
  border-bottom: 1px solid #666;
  margin-bottom: 0.5em;
}
.vector-menu-content li a {
  color: #eeeeee !important;
   background-color: transparent !important;
}
.vector-menu-content li a:hover,
.vector-menu-content li a:focus {
  background-color: #555 !important;
  color: #ffffff !important;
  text-decoration: underline;
}
.vector-menu-content li a:active {
  color: #ffffff !important;
  font-weight: bold;
}
 
/* Sidebar: Werkzeuge */
#p-tb h3 {
  color: #8dcaff !important;
  font-weight: bold;
  border-bottom: 1px solid #666;
}
#p-tb li a {
  color: #eeeeee !important;
}
#p-tb li a:hover {
   background-color: #444 !important;
   color: #ffffff !important;
}
 
/* === Fußzeile === */
#footer,
#footer a {
  color: #bbbbbb !important;
  background-color: #1e1e1e !important;
}
#footer-info,
#footer-info a {
  color: #aaa !important;
}
 
/* === Kategorie-Seiten-Links === */
.category-page__member-link {
  color: #aad7ff !important;
}
 
/* === Oberes Benutzermenü (rechts oben) === */
#p-personal,
#p-personal li a {
  background-color: #2a2a2a !important;
  color: #e0e0e0 !important;
}
#p-personal li a:hover {
   background-color: #444 !important;
  color: #ffffff !important;
}
 
/* === Tabs (Lesen, Bearbeiten etc.) === */
#p-views li a,
#p-cactions li a {
   background-color: #2a2a2a !important;
  color: #e0e0e0 !important;
  border-radius: 4px;
  padding: 0.2em 0.6em;
  margin-right: 4px;
}
#p-views li a:hover,
#p-cactions li a:hover {
  background-color: #444 !important;
  color: #ffffff !important;
  text-decoration: underline;
}
}

Aktuelle Version vom 17. Mai 2025, 09:55 Uhr

/* Logo skalieren */
#p-logo a {
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center center;
  height: 160px !important; /* Höhe des Logos */
  width: 160px !important; /* Breite des Logos */
  display: block;
}