MediaWiki:Vector.css: Difference between revisions

From BEASTX Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Tag: Reverted
Line 1: Line 1:
/* CSS placed here will affect users of the Vector skin */
/* CSS placed here will affect users of the Vector skin */
.ios {
    width: 200px; /* Breite des Bildes */
    height: auto; /* Höhe wird proportional zur Breite angepasst */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
    transition: transform 0.3s ease; /* Animation für Hover-Effekt */
}
.ios:hover {
    transform: scale(1.05); /* Vergrößerung bei Hover */
}

Revision as of 08:33, 10 August 2024

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

.ios {
    width: 200px; /* Breite des Bildes */
    height: auto; /* Höhe wird proportional zur Breite angepasst */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
    transition: transform 0.3s ease; /* Animation für Hover-Effekt */
}

.ios:hover {
    transform: scale(1.05); /* Vergrößerung bei Hover */
}