Difference between revisions of "MediaWiki:Common.css"

From Cubic Castles Wiki
Jump to navigation Jump to search
 
(25 intermediate revisions by the same user not shown)
Line 10: Line 10:
  
 
#footer { 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 {  }
 +
  
  
Line 32: Line 41:
 
}
 
}
  
.approvedAndLatestMsg { display: none; }
+
/* End
 
+
*/
#footer-places { display: none; }
 
#footer-info { padding-top: 5px; }
 

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