MediaWiki: Tweeki.css: Unterschied zwischen den Versionen

Aus MAV
Wechseln zu: Navigation, Suche
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Keine Bearbeitungszusammenfassung
 
(20 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
/* CSS placed here will affect users of the Tweeki skin */
/* CSS placed here will affect users of the Tweeki skin */
/* Navbar-Hintergrund in Weinrot */
.skin-tweeki .navbar {
  background-color: #A05252 !important; /* Weinrot / Bordeaux */
  border-color: #66001A !important;    /* etwas dunklerer Rand */
}


/* Textfarbe der Navbar-Links */
/* Hintergrundfarbe Tweeki-Navbar */
.skin-tweeki .navbar .navbar-brand,
.skin-tweeki .navbar-inverse,
.skin-tweeki .navbar-nav > li > a {
.skin-tweeki .navbar-dark.bg-dark {
   color: #ffffff !important;           /* Weiß für Kontrast */
   background-color: #722F37 !important;  
  border-color: #5a242b !important; 
}
}


/* Hover/Focus-Effekt für Links */
/* Klasse hidden */
.skin-tweeki .navbar-nav > li > a:hover,
.hidden {
.skin-tweeki .navbar-nav > li > a:focus {
   display: none !important;
   color: #ffd700;            /* Goldgelb als Akzent */
  background-color: rgba(255,255,255,0.08);
}
}


/* Aktiver Menüpunkt */
/* Tweeki auf volle Breite */
.skin-tweeki .navbar-nav > .active > a,
.container {
.skin-tweeki .navbar-nav > .active > a:hover,
   max-width: none !important;
.skin-tweeki .navbar-nav > .active > a:focus {
   width: 100% !important;
   color: #ffffff;
   background-color: rgba(0,0,0,0.2); /* leicht abgedunkelt */
}
}

Aktuelle Version vom 9. Januar 2026, 16:09 Uhr

/* CSS placed here will affect users of the Tweeki skin */

/* Hintergrundfarbe Tweeki-Navbar */
.skin-tweeki .navbar-inverse,
.skin-tweeki .navbar-dark.bg-dark {
  background-color: #722F37 !important; 
  border-color: #5a242b !important;   
}

/* Klasse hidden */
.hidden {
  display: none !important;
}

/* Tweeki auf volle Breite */
.container {
  max-width: none !important;
  width: 100% !important;
}