MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→CSS placed here will be applied to all skins: →Use <cite> for UI text: cite { font-weight: bold; color: #000080; font-style:normal; } /* Use <tt> for key...") |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Hide title of main page */ | |||
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; } | |||
/* Use <cite> for UI text */ | /* Use <cite> for UI text */ | ||
Latest revision as of 19:52, 4 June 2016
/* CSS placed here will be applied to all skins */
/* Hide title of main page */
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; }
/* Use <cite> for UI text */
cite {
font-weight: bold;
color: #000080;
font-style:normal;
}
/* Use <tt> for key names */
tt {
font-weight: bold;
color: maroon;
font-family: monospace, sans-serif;
}
/* Normal highlighted span: yellow */
span.hi {
background-color: #FFFF00;
}
/* Light green highlight */
span.green {
background-color: lightgreen;
}
/* Light blue highlight */
span.blue {
background-color: lightblue;
}
/* Red highlight with white text */
span.red {
background-color: red;
color: white;
}
/* Fix so <code> and <pre> tags get normal text size also in
some versions of Firefox, Safari, Konqueror, Chrome etc.
*/
code, pre {
font-family: monospace, sans-serif;
}
/* Hide logo to display faster
*/
#f-poweredbyico { display: none; }
#footer-icon-poweredby { display: none; }