Difference between revisions of "MediaWiki:Common.css"

From Eurobattle.net WiKi
Jump to navigation Jump to search
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
 +
 +
.zoom_img img{
 +
-moz-transition:-moz-transform 0.1s ease-in;
 +
-webkit-transition:-webkit-transform 0.1s ease-in;
 +
-o-transition:-o-transform 0.1s ease-in;
 +
transition:transform 0.1 ease-in;
 +
}
 +
 +
.zoom_img img:hover{
 +
-moz-transform:scale(2);
 +
-webkit-transform:scale(2);
 +
-o-transform:scale(2);
 +
transform:scale(2);
 +
}

Revision as of 13:23, 8 April 2018

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

.zoom_img img{
-moz-transition:-moz-transform 0.1s ease-in; 
-webkit-transition:-webkit-transform 0.1s ease-in; 
-o-transition:-o-transform 0.1s ease-in;
transition:transform 0.1 ease-in;
}

.zoom_img img:hover{
-moz-transform:scale(2); 
-webkit-transform:scale(2);
-o-transform:scale(2);
transform:scale(2);
}