MediaWiki:Geshi.css: Difference between revisions

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

Revision as of 13:08, 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;
  font-size: 1.25em;

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