Difference between revisions of "MediaWiki:Geshi.css"

From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 39: Line 39:
 
}
 
}
 
.lua.source-lua .kw1 {  
 
.lua.source-lua .kw1 {  
     /*color: #0d8bca;*/
+
     color: #0d8bca;
    color: orange
 
 
     font-weight: bold;
 
     font-weight: bold;
 
}
 
}
 
   
 
   
 
.lua.source-lua .co1, .lua.source-lua .coMULTI {  
 
.lua.source-lua .co1, .lua.source-lua .coMULTI {  
     color: #888;
+
     /*color: #888;*/
 +
    color: orange;
 
     font-weight: normal;
 
     font-weight: normal;
 
}
 
}

Revision as of 05:17, 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;
}

/* 
begin lua css! 
*/

/* variable colors */
.lua.source-lua .de1, .lua.source-lua .de2 {
    color: #333;
    margin: 0 0 0 0;
    font-family: monospace, vrinda !important;
    font-size: 14px;
}
/* number list styles */
.lua.source-lua {
    list-style-type: decimal;
    list-style-position: outside;
    font-family: monospace, vrinda !important;
    font-size: 14px;
}
/* styles for text when number list is on */
.lua.source-lua .li1, .lua.source-lua .li2  {
    color: orange;
    border-left: 1px solid darkgrey;
    /*background: #f0f0f0;*/
    padding-left: 10px;
}
.lua.source-lua .kw1 { 
    color: #0d8bca;
    font-weight: bold;
}
 
.lua.source-lua .co1, .lua.source-lua .coMULTI { 
    /*color: #888;*/
    color: orange;
    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;*/
    color: blue;
}