Difference between revisions of "MediaWiki:Common.css"

From GRFSpecs
Jump to navigationJump to search
m (change table background slightly and make sure all tables use the 5px padding)
(some css for code and pre)
Line 14: Line 14:
 
border: 1px solid #CCCCCC;
 
border: 1px solid #CCCCCC;
 
padding: 0px 5px;
 
padding: 0px 5px;
  +
}
  +
  +
code {
  +
color: green;
  +
}
  +
  +
pre {
  +
color: blue;
 
}
 
}
   

Revision as of 08:27, 26 August 2011

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

table.wikitable td, th {
    border: 1px solid #CCCCCC;
    padding: 0 5px;
}
table {
    border-collapse: collapse;
    empty-cells: show;
    background: #FAFAFF;
}

td, th {
    border:  1px solid #CCCCCC;
    padding: 0px 5px;
}

code {
    color:   green;
}

pre {
    color: blue;
}

/* Pad Google AdSense box in portlet in sidebar */
#p-googleadsense .pBody {
    padding-top: 5px;
    text-align:  center;
}