Difference between revisions of "MediaWiki:Common.css"

From Cubic Castles Wiki
Jump to navigation Jump to search
Line 10: Line 10:
  
 
#footer { min-width: 1027px }
 
#footer { min-width: 1027px }
 
 
/* CSS Hover Gallery for Mediawiki
 
*
 
* @author: Unknown
 
* current version crafted together by [[User:Christharp]] from several CSS sites. For my website:[http://www.yellpedia.com/wiki/Main_Page Yellpedia]
 
*/
 
 
.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 22:01, 10 May 2016

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

body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; }

#p-tb.portal { display: none; }

#ca-talk { display: none; }

#content.mw-body { min-width: 1027px }

#footer { min-width: 1027px }