Difference between revisions of "MediaWiki:Geshi.css"

(Replaced content with "CSS placed here will be applied to GeSHi syntax highlighting: div.mw-geshi { border: 1px dashed #2f6fab; font-size: 0.8em; }")
Line 2: Line 2:
  
 
div.mw-geshi {
 
div.mw-geshi {
   border: 1px dashed #2f6fab;
+
  background: #f5f5f5;
   font-size: 0.8em;
+
   border: 1px solid #ccc;
 +
  border-radius: 3px;
 +
  overflow-x: auto;
 +
  padding: 5px 10px;
 +
  word-wrap: normal;
 +
   font-family: Consolas,Menlo,"Liberation Mono",Courier,monospace;
 
}
 
}

Revision as of 19:05, 20 July 2015

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

div.mw-geshi {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 3px;
  overflow-x: auto;
  padding: 5px 10px;
  word-wrap: normal;
  font-family: Consolas,Menlo,"Liberation Mono",Courier,monospace;
}