MediaWiki:Geshi.css: Difference between revisions

From wiki.openchemistry.org
Jump to navigation Jump to 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; }")
 
No edit summary
Line 5: Line 5:
   border: 1px dashed #2f6fab;
   border: 1px dashed #2f6fab;
   background-color: #f9f9f9;
   background-color: #f9f9f9;
}
/* Fix so <tt>, <code>, and <pre> display in a suitable size in firefox, chrome, etc */
tt, code, pre {
    font-size: 1.25em;
}
}

Revision as of 13:07, 12 December 2011

/* 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;
}
/* Fix so <tt>, <code>, and <pre> display in a suitable size in firefox, chrome, etc */
tt, code, pre {
    font-size: 1.25em;
}