User:RubenSchade/monobook.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.
/*
* NAME: monobook.css
* CREATED: Ruben Schade, User:RubenSchade
* LICENCE: Released into the public domain (or legal equivalent), do with as you wish ^_^
*
* DESCRIPTION: Despite the release of Vector, I still prefer Monobook and still
* deploy it for now. It has more lines, but is clearer in my opinion. Also never
* got used to the relocated search box either. To each their own :)
*/
/*
* GLOBAL FONT
* The default Monobook theme uses a wider font on BSD/Linux than Helvetica on
* Mac and Arial on Windows. Liberation Sans is the closest in size, kerning etc
* to these fonts, and saves horizontal space without having to use letter spacing
*/
* {
font-family: "Liberation Sans", Helvetica, Arial, Sans, sans-serif;
}
/*
* GLOBAL ANCHOR LINKS
* I find the distinct colours for visited and non-visited links to be a little jarring
* This renders visited links only subtly different to non-visited ones
*/
a.external:visited,
a:visited {
color:#0000ff;
}
/*
* EDITING TEXT
* Smaller text, using my favourite Mac monospace font
*/
textarea,
pre,
code {
font-family: Menlo, Monaco, "Liberation Mono", monospace;
font-size:10px;
}