Created page with "CSS placed here will be applied to all skins: .mw-highlight > pre .hll { background-color: #000000 } .mw-highlight > pre .k { color: #31dd7c; font-weight: bold } Keyword: .mw-highlight > pre .l { color: #31dd7c } Literal: .mw-highlight > pre .n { color: #31dd7c } Name: .mw-highlight > pre .o { color: #31dd7c } Operator: .mw-highlight > pre .x { color: #31dd7c } Other: .mw-highlight > pre .kr { color: #31dd7c; font-weight: bold } /* Keyword.R..."
 
No edit summary
 
(39 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
.mw-highlight > pre .hll { background-color: #000000 }
 
.mw-highlight > pre .k { color: #31dd7c; font-weight: bold } /* Keyword */
@font-face {
.mw-highlight > pre .l { color: #31dd7c } /* Literal */
  font-family: Glass_TTY_VT220;
.mw-highlight > pre .n { color: #31dd7c } /* Name */
  src: url('https://ada83.org/wiki/skins/Timeless/resources/fonts/Glass_TTY_VT220.ttf') format('truetype');
.mw-highlight > pre .o { color: #31dd7c } /* Operator */
}
.mw-highlight > pre .x { color: #31dd7c } /* Other */
 
.mw-highlight > pre .kr { color: #31dd7c; font-weight: bold } /* Keyword.Reserved */
@font-face {
  font-family: decterm;
  src: url('https://ada83.org/wiki/skins/Timeless/resources/fonts/_decterm.ttf') format('truetype');
}
 
.mw-highlight-lang-ada pre {
    background-color: black;
    color: gold;
    tab-size:10;
    font-family:'decterm';
    font-size:18px;
    line-height: 1.2
}
 
.mw-highlight-lang-ada pre .k {
    color: blue;font-weight: bold;
}

Latest revision as of 00:53, 4 March 2025

/* CSS placed here will be applied to all skins */

@font-face {
  font-family: Glass_TTY_VT220;
  src: url('https://ada83.org/wiki/skins/Timeless/resources/fonts/Glass_TTY_VT220.ttf') format('truetype');
}

@font-face {
  font-family: decterm;
  src: url('https://ada83.org/wiki/skins/Timeless/resources/fonts/_decterm.ttf') format('truetype');
}

.mw-highlight-lang-ada pre {
    background-color: black;
    color: gold;
    tab-size:10;
    font-family:'decterm';
    font-size:18px;
    line-height: 1.2
}

.mw-highlight-lang-ada pre .k {
    color: blue;font-weight: bold;
}