No edit summary
Tag: Reverted
No edit summary
 
(18 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 */
@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 {
.mw-highlight-lang-ada pre {
     background-color: black !important;
     background-color: black;
     color: lime !important;
     color: gold;
     tab-size:10;
     tab-size:10;
     font-family:'Noto Mono';
     font-family:'decterm';
     font-size:13px;
     font-size:18px;
     line-height: 1.2
     line-height: 1.2
}
}


.mw-highlight-lang-ada .k {
.mw-highlight-lang-ada pre .k {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .kc {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .kd {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .kn {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .kp {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .kr {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .kt {
    color: blue;font-weight: bold;
}
 
.mw-highlight-lang-ada .l {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .n {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .o {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .x {
    color: blue;font-weight: bold;
}
.mw-highlight-lang-ada .p {
     color: blue;font-weight: bold;
     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;
}