User:RubenSchade/monobook.css
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .js page for this skin is at User:RubenSchade/monobook.js. |
/*
* NAME: monobook.css
* CREATED: Ruben Schade, User:RubenSchade
* LICENCE: Released into the public domain, do with as you wish ^_^
*
* DESCRIPTION: Despite the release of Vector, I still prefer MonoBook. It has
* more lines, but is much clearer. Also never got used to the relocated search
* box either. To each their own :)
*/
/*
* GLOBAL FONT
* On my Mac everything looks fine, but default font is too wide on BSD/Linux
*/
* {
font-family: "Helvetica Neue", "Liberation Sans", Sans, sans-serif;
}
/*
* GLOBAL ANCHOR LINKS
* I find the distinct colours for [non]visited links to be a little jarring
* This makes visited links only subtly different
*/
a.external:visited,
a:visited {
color: #0000ff;
}
/*
* EDITING TEXT
* Smaller text, using my favourite monospace font
*/
textarea {
font-family: Inconsolata, Terminus, Menlo, Monaco, "Liberation Mono", monospace;
font-size :14px;
}