Actions

MediaWiki

Common.css: Difference between revisions

From SUALEX

No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Term styling */
.value-term {
.value-term {
font-weight: bold !important;
font-weight: bold !important;
}
}


/* Message box styling */
.mbox {
  position: relative;
  margin: 1em 0;
  padding: 0.6em 1em 0.6em 3.5em;
  border: 1px solid #a2a9b1;
  border-left-width: 10px;
  background-color: #f8f9fa;
  color: #202122;
  font-size: 0.95em;
  line-height: 1.4;
  box-sizing: border-box;
}
.mbox-title {
  font-weight: bold;
  margin-bottom: 0.3em;
}
/* Responsive, horizontally scrollable table */
@media (max-width: 720px) {
@media (max-width: 720px) {
   table.wikitable {
   .wikitable {
     display: block;
     display: block;
     overflow-x: auto;
     overflow-x: auto;

Revision as of 05:17, 29 January 2026

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

/* Term styling */
.value-term {
	font-weight: bold !important;
}

/* Message box styling */
.mbox {
  position: relative;
  margin: 1em 0;
  padding: 0.6em 1em 0.6em 3.5em;
  border: 1px solid #a2a9b1;
  border-left-width: 10px;
  background-color: #f8f9fa;
  color: #202122;
  font-size: 0.95em;
  line-height: 1.4;
  box-sizing: border-box;
}

.mbox-title {
  font-weight: bold;
  margin-bottom: 0.3em;
}

/* Responsive, horizontally scrollable table */
@media (max-width: 720px) {
  .wikitable {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
}