MediaWiki:Common.css
From SUALEX
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* 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-icon {
position: absolute;
left: 0.8em;
top: 0.7em;
font-size: 1.3em;
line-height: 1;
opacity: 0.85;
}
.mbox-title {
font-weight: bold;
margin-bottom: 0.3em;
}
.mbox-info { border-left-color: #36c; }
.mbox-warning { border-left-color: #f28500; background-color: #fffaf3; }
.mbox-error { border-left-color: #d33; background-color: #fff6f6; }
.mbox-success { border-left-color: #14866d; background-color: #f4fbf9; }
/* Responsive, horizontally scrollable table */
@media (max-width: 720px) {
.wikitable {
display: block;
overflow-x: auto;
width: 100%;
}
}