Difference between revisions of "MediaWiki:Geshi.css"

From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 19: Line 19:
 
     font: normal normal 14px Bitstream Vera Sans Mono,monospace;
 
     font: normal normal 14px Bitstream Vera Sans Mono,monospace;
 
}
 
}
.lua.source-lua {
+
ol.lua.source-lua {
 
     list-style-type: decimal-leading-zero;
 
     list-style-type: decimal-leading-zero;
 
     list-style-position: outside;
 
     list-style-position: outside;

Revision as of 04:51, 7 March 2013

/* Fix so <source> tags get normal text size also in some
   versions of Firefox, Safari, Konqueror, Chrome etc.
   See http://en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Section_break._Teletype_style_fix */
 
div.mw-geshi div {
    font-family: monospace, vrinda !important;
    font-size: 15px;
}
 
#content div.mw-geshi pre {
    font-family: monospace, vrinda;
    font-size: 15px;
}

/* lua */
.lua.source-lua .de1, .lua.source-lua .de2 {
    color: #333;
    margin: 0 0 0 0;
    font: normal normal 14px Bitstream Vera Sans Mono,monospace;
}
ol.lua.source-lua {
    list-style-type: decimal-leading-zero;
    list-style-position: outside;
    font-size: 14px;
}
.lua.source-lua .li1, .lua.source-lua .li2  {
    color: orange;
    border-left: 1px dashed darkgrey;
    margin-left: 5px;
    background: #f0f0f0;
}
.lua.source-lua .kw1 { 
    color: #0d8bca;
    font-weight: bold;
}
 
.lua.source-lua .co1, .lua.source-lua .coMULTI { 
    color: #888;
    font-weight: normal;
}
 
.lua.source-lua .nu0 { 
    color: red;
}
 
.lua.source-lua .sy0 { 
    color: #555;
}
 
.lua.source-lua .st0 { 
    color: #008000;
}
 
.lua.source-lua .br0 { 
    color: #555;
}