Difference between revisions of "MediaWiki:Geshi.css"

From VCMI Project Wiki
Jump to: navigation, search
(Created page with "CSS placed here will be applied to GeSHi syntax highlighting: div.mw-geshi { padding: 1em; margin: 1em 0; border: 1px dashed #2f6fab; background-color: #f9f9f9; }")
 
Line 2: Line 2:
  
 
div.mw-geshi {
 
div.mw-geshi {
  padding: 1em;  
+
font-family: Monaco, Consolas, Courier, 'Courier New', sans-serif;
  margin: 1em 0;  
+
padding: 1em;
  border: 1px dashed #2f6fab;
+
border: 1px dashed #2f6fab;
  background-color: #f9f9f9;
+
/*color: black;*/
 +
background-color: black;
 +
line-height: 1.1em;
 
}
 
}

Revision as of 00:07, 14 December 2012

/* CSS placed here will be applied to GeSHi syntax highlighting */

div.mw-geshi {
	font-family:	Monaco, Consolas, Courier, 'Courier New', sans-serif;
	padding: 1em;
	border: 1px dashed #2f6fab;
	/*color: black;*/
	background-color: black;
	line-height: 1.1em;
}