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
Tag: Reverted
Tag: Reverted
Line 19: Line 19:


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


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


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


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

Revision as of 14:55, 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: 3px solid black;
}