Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Created page with "CSS placed here will be applied to all skins: .logo { transition: width 2s; }"
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


.logo {
.logo img {
transition: width 2s;
  width: 600px;
  transition: width 0.5s ease-in-out;
}
 
.logo img:hover {
  width: 650px;
}
}

Revision as of 21:48, 17 April 2026

/* CSS placed here will be applied to all skins */

.logo img {
  width: 600px;
  transition: width 0.5s ease-in-out;
}

.logo img:hover {
  width: 650px;
}