MediaWiki:Common.css: Difference between revisions

From wiki.vg
Jump to navigation Jump to search
imported>TkTech
mNo edit summary
imported>Dazz
(Created page with "→‎CSS placed here will be applied to all skins: .ca-talk{ display: none; }")
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Hide the main page title */
.ca-talk{
body.page-Main_Page h1.firstHeading { display:none; }
display: none;
 
/* Styling for the Note and Quote templates. */
.box {
  padding-left: 6px;
}
 
.box-alert {
    background-color: #F0E7E7;
    border: 1px solid #cc3333;
}
 
.box-note {
  background-color: #F0F0E7;
  border: 1px solid #cc9933;
}
 
/* Restyling the MCDevs pages to be similar to the old site. */
.page-MCDevs_rules {
    background-color: white;
}
 
.page-MCDevs_rules #mw-navigation,
.page-MCDevs_rules #mw-page-base,
.page-MCDevs_rules #footer {
  display: none;
}
 
.page-MCDevs_rules #content {
    border: none;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
}
}

Revision as of 15:54, 21 May 2014

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

.ca-talk{
display: none;
}