MediaWiki:Vector.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* 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 */ }