MediaWiki:Common.css: Difference between revisions

From Drew's Battletech Wiki
(Created page with "→‎CSS placed here will be applied to all skins: ===CSS for Skinning Info Boxes=== */ table.infobox { background: white; border: 1px solid #007; border-collapse: colla...")
 
No edit summary
Line 34: Line 34:
}
}
table.infobox tr.infoboxrow {
table.infobox tr.infoboxrow {
   background: #77F;
   background: #EEF;
   color: inherit;
   color: inherit;
   border-spacing: 0;
   border-spacing: 0;
Line 46: Line 46:
}
}
table.infobox tr.infoboxrow td {
table.infobox tr.infoboxrow td {
   background: #77F;
   background: #EEF;
   border-top: 1px solid #007;
   border-top: 1px solid #007;
   border-bottom: 1px solid #007;
   border-bottom: 1px solid #007;

Revision as of 18:46, 21 February 2014

/* CSS placed here will be applied to all skins */
===CSS for Skinning Info Boxes===
*/
table.infobox {
  background: white;
  border: 1px solid #007;
  border-collapse: collapse;
  clear: right;
  color: black;
  float: right;
  line-height: 2em;
  margin: 10px;
  padding: 5px;
  width: 350px;
}
table.infobox tr {
  text-align: center;
}
table.infobox tr td.infoboxname,
table.infobox tr th.infoboxname {
  color: inherit;
  background: white;
  font-size: larger;
  font-weight: bold;
  text-align: center;
}
table.infobox tr td.infoboxheading,
table.infobox tr th.infoboxheading {
  background: #EEF;
  border-color: #007;
  color: inherit;
  font-weight: bold;
  text-align: left;
}
table.infobox tr.infoboxrow {
  background: #EEF;
  color: inherit;
  border-spacing: 0;
  vertical-align: middle;
  text-align: left;
}
table.infobox tr td {
  background: white;
  color: inherit;
  padding: 5px;
}
table.infobox tr.infoboxrow td {
  background: #EEF;
  border-top: 1px solid #007;
  border-bottom: 1px solid #007;
  color: inherit;
}
table.infobox tr.infoboxrow td.bot {
  border-bottom: 1px solid #007;
  border-top: none;
}
table.infobox tr.infoboxrow td.top {
  border-bottom: none;
  border-top: 1px solid #007;
}