MediaWiki:Common.css: Difference between revisions

From Moonlight Design
Jump to navigation Jump to search
No edit summary
No edit summary
 
(23 intermediate revisions by the same user not shown)
Line 1: Line 1:
/** CSS placed here will be applied to all skins */
/** CSS placed here will be applied to all skins */
 
#bodyContent {
  max-width: 70em;
  margin: 0 auto;
}
table.software {
table.software {
   border-width: 1px 1px 1px 1px;
   border-width: 1px;
   border-spacing: 0px;
   border-spacing: 0px;
   border-style: outset outset outset outset;
   border-style: outset;
   border-color: black black black black;
   border-color: black;
   border-collapse: separate;
   border-collapse: separate;
   background-color: white;
   background-color: white;
}
table.software td {
  vertical-align: top;
}
}
table.software td:first-child {
table.software td:first-child {
   vertical-align: top;
   width: 10em;
}
table.software td:last-child {
  width: 5em;
}
table.software td:not(last-child) {
   padding-right: 1em;
   padding-right: 1em;
   border-width: 0px 1px 0px 0px;
   border-width: 0px 1px 0px 0px;
   border-style: inset inset inset inset;
   border-style: inset inset inset inset;
   border-color: gray black gray gray;
   border-color: gray black gray gray;
}
table.software td:not(first-child) {
  vertical-align: top;
}
}
table.software th {
table.software th {
   vertical-align: top;
   vertical-align: top;
   padding-right: 1em;
   padding-right: 1em;
   border-width: 0px 1px 0px 0px;
   border-width: 0px 1px 1px 0px;
   border-style: inset inset inset inset;
   border-style: inset inset inset inset;
   border-color: gray black gray gray;
   border-color: gray black black gray;
}
}
tr.grayrow { background-color: #eaeaea; }
tr.grayrow { background-color: #eaeaea; }

Latest revision as of 02:52, 16 May 2011

/** CSS placed here will be applied to all skins */
#bodyContent {
  max-width: 70em;
  margin: 0 auto;
}
table.software {
  border-width: 1px;
  border-spacing: 0px;
  border-style: outset;
  border-color: black;
  border-collapse: separate;
  background-color: white;
}
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; }