MediaWiki:Common.css: Difference between revisions

From Moonlight Design
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
   background-color: white;
   background-color: white;
   max-width: 85em;
   max-width: 85em;
   margin-left: 0 auto;
   margin: 0 auto;
  margin-right: 0 auto;
}
}
table.software td {
table.software td {

Revision as of 02:34, 16 May 2011

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

table.software {
  border-width: 1px;
  border-spacing: 0px;
  border-style: outset;
  border-color: black;
  border-collapse: separate;
  background-color: white;
  max-width: 85em;
  margin: 0 auto;
}
table.software td {
  vertical-align: top;
}
table.software td:first-child {
  width: 10em;
}
table.software td:last-child {
  width: 5em;
}
table.software td:not(last-child) {
  padding-right: 1em;
  border-width: 0px 1px 0px 0px;
  border-style: inset inset inset inset;
  border-color: gray black gray gray;
}
table.software th {
  vertical-align: top;
  padding-right: 1em;
  border-width: 0px 1px 1px 0px;
  border-style: inset inset inset inset;
  border-color: gray black black gray;
}
tr.grayrow { background-color: #eaeaea; }