Difference between revisions of "MediaWiki:Common.css"

From Cubic Castles Wiki
Jump to navigation Jump to search
Line 35: Line 35:
  
 
#footer-places { display: none; }
 
#footer-places { display: none; }
#footer-info { top: 15px; }
 

Revision as of 10:15, 12 June 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 }


/* 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);
}

.approvedAndLatestMsg { display: none; }

#footer-places { display: none; }