MediaWiki:Common.css: Difference between revisions

From Boolean
Jump to navigation Jump to search
No edit summary
No edit summary
 
(30 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 */
table td,th {
table {
  border-collapse: collapse;
  padding: 1em 0 1em 0;
  border: 1px solid black;
}
 
table td,table th {
   border: 1px solid black;
   border: 1px solid black;
   text-align: center;
   text-align: center;
}
.strongDivider {
  border-top: 3px solid black;
}
table.borderless td {
  border-top-style: none;
  border-bottom-style: none;
}
tr.divider {
    border-top: 1px solid black;
}
span.htmlMath {
    font-style: italic;
    font-weight: bold;
}
}

Latest revision as of 14:54, 20 August 2019

/* CSS placed here will be applied to all skins */
table {
   border-collapse: collapse;
   padding: 1em 0 1em 0;
   border: 1px solid black;
}

table td,table th {
   border: 1px solid black;
   text-align: center;
}

.strongDivider {
   border-top: 3px solid black;
}

table.borderless td {
   border-top-style: none;
   border-bottom-style: none;
}

tr.divider {
    border-top: 1px solid black;
}

span.htmlMath {
    font-style: italic;
    font-weight: bold;
}