Difference between revisions of "MediaWiki:Common.css"

From Eurobattle.net WiKi
Jump to navigation Jump to search
Line 21: Line 21:
  
 
.dota-background {
 
.dota-background {
               background-image: url("http://wiki.eurobattle.net/images/3/31/Rexxar.png");
+
               background-image: url("/images/3/31/Rexxar.png");
 
               background-color: tomato;
 
               background-color: tomato;
 
}
 
}
  
 
dota {
 
dota {
   background: url("http://wiki.eurobattle.net/images/3/31/Rexxar.png") repeat-x scroll 0 0 #990000; color: white;
+
   background: url("/images/3/31/Rexxar.png") repeat-x scroll 0 0 #990000; color: white;
 
}
 
}

Revision as of 14:42, 8 April 2018

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


/* Zoom on hover snippet */

.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(1.6); 
-webkit-transform:scale(1.6);
-o-transform:scale(1.6);
transform:scale(1.6);
}

/* End of Zoom on hover snippet */

.dota-background {
               background-image: url("/images/3/31/Rexxar.png");
               background-color: tomato;
}

dota {
  background: url("/images/3/31/Rexxar.png") repeat-x scroll 0 0 #990000; color: white;
}