MediaWiki:Common.css

Plugs, Socket Outlets, Vehicle Couplers and Inlets for Conductive Charging Systems of Electric Vehicles

Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will be applied to all skins */


 /* The animation code */
@keyframes slideInDown {
  from {opacity: 0; top: -300px; visibility: hidden;}
  to {opacity: 1; top: 0; visibility: visible;}
}

@keyframes slideInUp {
  from {opacity: 0; top: 1000px; visibility: hidden;}
  to {opacity: 1; top: 0; visibility: visible;}
}

/* The element to apply the animation to */
.mw-banner {
    opacity: 0;
    animation-name: slideInDown;
    animation-delay: 1.2s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
	position: relative;
}

#below-banner {
    opacity: 0;
    animation-name: slideInUp;
    animation-delay: 1.5s;
    animation-duration: 0.9s;
    animation-fill-mode: forwards;
	position: relative;
}