Difference between revisions of "MediaWiki:Geshi.css"

From SupaHam
Jump to: navigation, search
(Undo revision 483 by SupaHam (talk))
(Undo revision 482 by SupaHam (talk))
 
Line 1: Line 1:
 
/* This css will override styles used by the GeSHi syntax highlighting,
 
/* This css will override styles used by the GeSHi syntax highlighting,
 
   such that less awful colors for the highlighting can be chosen. */
 
   such that less awful colors for the highlighting can be chosen. */
 
div.mw-geshi div,pre {
 
font-family: monospace, "Courier New" !important;
 
font-size:13px;
 
}
 
  
  

Latest revision as of 06:43, 15 January 2014

/* This css will override styles used by the GeSHi syntax highlighting,
   such that less awful colors for the highlighting can be chosen. */
 
 
/**
 * Language code: "vb"
 * 
 * Overrides colors used for keywords from that horrible gold 
 * to more tolerable blue. Other colors left as default at present time.
 */
.source-vb .kw1 {
	color: #006 !important;
}
 
/**
 * Language code: "cpp"
 *
 * Color fix for member variables
 */
.source-cpp .me1 { color:#499; }
.source-cpp .me2 { color:#499; }
 
/* Geshi's colourscheme for MySQL is absolutely hideous. */
.mysql.source-mysql .kw1,
.mysql.source-mysql .kw2,
.mysql.source-mysql .kw3,
.mysql.source-mysql .kw6,
.mysql.source-mysql .kw10 {
	color: #993333;
}
 
.mysql.source-mysql .coMULTI,
.mysql.source-mysql .sy1 {
	color: #808080;
}
 
.mysql.source-mysql .br0 {
	color: #66cc66;
}