Jump to content

User:RubenSchade/monobook.css

From Wikipedia, the free encyclopedia
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.
/*
 * 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;
}