Cookies help us deliver our services. By using our services, you agree to our use of cookies. More information

Difference between revisions of "MediaWiki:Common.css"

From Bioblast
Line 38: Line 38:
table.sortable.wikitable tr {
table.sortable.wikitable tr {
   border-bottom: 1px solid black;
   border-bottom: 1px solid black;
}
/* Remove border line from all the TOC */
.toc {
  border: 0px solid;
}
}

Revision as of 14:31, 3 November 2022

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

/* Hide the horizontal line below titles */
.mw-body .firstHeading {
border-bottom:0px;
margin-top: 0;
margin-bottom: 0;
}

/* Website witdh set to 80% of the screen */
.container, .container-sm, .container-md, .container-lg, .container-cmln, .container-xl {
  max-width: 80%;
}

/* Less space in the upper part */
.skin-chameleon .mw-indicator-smw-entity-examiner {
  margin-top: 0;
}

/* Change the style of the sortable wikitable */
table.sortable.wikitable {
  border:0px solid;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  background: white;
}

table.sortable th {
  border: 0px solid;
  background: eaecf0;
}

table.sortable.wikitable td {
  border:0px solid;
  background: white;
}

table.sortable.wikitable tr {
  border-bottom: 1px solid black;
}

/* Remove border line from all the TOC */
.toc {
  border: 0px solid;
}