MediaWiki: Tweeki.css: Unterschied zwischen den Versionen

Aus wiki-überbau
Wechseln zu: Navigation, Suche
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
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-light .navbar-nav .nav-link:hover {
.navbar-brand:hover {
   color: rgba(0,0,0,.7);
  transform: scale(1.02);
   transform: scale(1.1);
transition: transform 0.1s;
}
.dropdown-item:hover {
   transform: scale(1.03);
transition: transform 0.1s;
}
.nav-link:hover {
   transform: scale(1.03);
transition: transform 0.1s;
}
}
.img-fluid:hover {
.img-fluid:hover {

Version vom 30. Januar 2023, 14:51 Uhr

/* CSS placed here will affect users of the Tweeki skin */
.navbar-brand:hover {
  transform: scale(1.02);
 transition: transform 0.1s;
}
.dropdown-item:hover {
  transform: scale(1.03);
 transition: transform 0.1s;
}
.nav-link:hover {
  transform: scale(1.03);
 transition: transform 0.1s;
}
.img-fluid:hover {
    transform: scale(1.1);
}
.img-fluid {
    transition: transform 0.2s;
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}
#loading {
    background-image: url('images/4/42/Loading.gif');
    background-repeat: no-repeat;
    background-position: center;
}