MediaWiki: Tweeki.css: Unterschied zwischen den Versionen

Aus wiki-überbau
Wechseln zu: Navigation, Suche
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 6: Zeile 6:
     transition: transform 0.5s;
     transition: transform 0.5s;
}
}
#loading {
    background-image: url('/images/4/42/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
}
#loading {
#loading {
     position: fixed;
     position: fixed;

Version vom 12. Januar 2023, 15:05 Uhr

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

#loading {
    background-image: url('/images/4/42/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
}

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