MediaWiki:Common.css: Difference between revisions

From GHM wiki

(Created page with "→‎CSS placed here will be applied to all skins: table.wikitable { border: 1px solid black; }")
 
No edit summary
 
(9 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.wikitable {
table.wikitable {
  border: 1px solid black;
  border-collapse: collapse;
}
 
table.wikitable td {
  border: .5px solid #ddd;
  padding: .75em;
}
}

Latest revision as of 18:35, 10 March 2023

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

table.wikitable {
  border-collapse: collapse;
}

table.wikitable td {
  border: .5px solid #ddd;
  padding: .75em;
}