Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* Hide [rollback] button from watchlist */
.mw-special-Watchlist .mw-rollback-link {
    display: none;
}

/* Use darker background color */
.mw-body {
    background-color: #f0f0f0;
}
html, body {
    background-color: #f0f0f0;
}
#toc, .toc, .mw-warning {
    background-color: #e0e0e0;
}

/* Make minor diffs like space changes more visible */
td.diff-addedline .diffchange {
    background-color: #f0f040;
}
td.diff-deletedline .diffchange {
    background-color: #8eeec8;
}

/* Make edit textarea background darker */
textarea#wpTextbox1 {
    background-color: #e6e6f0;
}
/* Change edit box font size
#wpTextbox1 {
  font-size: 95%;
}
*/

/* Make history selected entries more visible */
/* XXX No longer appears to work recently */
#pagehistory li.selected {
    background-color: #e0e0ff;
}

/* Make selected reference more visible */
ol.references li:target,sup.reference:target {
    background-color: #e0e0ff;
}

/* Override default monospace font size (13px) */
.mw-editfont-monospace {
    font-size: 16px;
}
.diff-addedline, .diff-deletedline, .diff-context {
    font-size: 16px;
}