MediaWiki:Common.css
Appearance
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.
/* Remove MediaWiki branding and clutter */
#mw-page-base,
#mw-head-base,
.mw-wiki-logo,
#p-logo,
.printfooter,
.catlinks,
#footer-info,
#footer-places,
.mw-editsection,
.mw-jump-link {
display: none !important;
}
/* Hide edit links unless hovering */
.mw-editsection {
opacity: 0;
transition: opacity 0.3s ease;
}
.mw-body:hover .mw-editsection {
opacity: 1;
}
/* Minimal page tabs */
#p-views ul li {
background: none;
border: none;
margin: 0 10px 0 0;
}
#p-views ul li a {
background: none !important;
color: #888 !important;
border: none !important;
padding: 5px 0 !important;
font-family: 'JetBrains Mono', monospace;
font-size: 0.9em;
}
#p-views ul li.selected a {
color: #fff !important;
border-bottom: 2px solid #88c0d0 !important;
}