Difference between revisions of "MediaWiki:Common.css"

From Cubic Castles Wiki
Jump to navigation Jump to search
 
Line 15: Line 15:
 
#footer-places { display: none; }
 
#footer-places { display: none; }
  
#mw-head { background-image: url("/header.png"); background-repeat: no-repeat; }
+
#mw-head { background-image: url("/images/header.png"); background-repeat: no-repeat; }
  
 
#footer {  }
 
#footer {  }

Latest revision as of 18:02, 18 October 2017

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

.approvedAndLatestMsg { display: none; }

#footer-places { display: none; }

#mw-head { background-image: url("/images/header.png"); background-repeat: no-repeat; }

#footer {  }



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

/* End
 */