MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
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 { | ||
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;
}