MediaWiki:Vector.css

From BEASTX Wiki
Revision as of 08:33, 10 August 2024 by Shornstein (talk | contribs)
Jump to navigation Jump to search

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 */
}