MediaWiki: Tweeki.css: Unterschied zwischen den Versionen

Aus wiki-überbau
Wechseln zu: Navigation, Suche
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Keine Bearbeitungszusammenfassung
Markierung: Manuelle Zurücksetzung
Zeile 1: Zeile 1:
/* CSS placed here will affect users of the Tweeki skin */
/* CSS placed here will affect users of the Tweeki skin */
.zoom_img img{
.img-fluid:hover {
     transition:transform 0.1 ease-in;
     transform: scale(1.1);
}
}
 
.img-fluid {
.zoom_img img:hover{
     transition: transform 0.5s;
     transform:scale(2);
}
}



Version vom 12. Januar 2023, 15:38 Uhr

/* CSS placed here will affect users of the Tweeki skin */
.img-fluid:hover {
    transform: scale(1.1);
}
.img-fluid {
    transition: transform 0.5s;
}

#loading {
    background-image: url('[[loading.gif]]');
    background-repeat: no-repeat;
    background-position: center;
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}