1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
/* Prolog term element styles.
*/
span.pl-ellipsis {}
span.pl-var {color:#8b0000;font-style:italic;}
span.pl-atom {}
span.pl-quoted-atom {color:#000080;}
span.pl-string {color:#000080;}
span.pl-int {}
span.pl-rational {}
span.pl-float {}
span.pl-curl {}
span.pl-compound {}
span.pl-list {}
span.pl-var-tail {color:#8b0000;font-style:italic;}
span.pl-nonvar-tail {color:#800;}
span.pl-compound {}
span.pl-dict {}
span.pl-key {font-weight:bold;}
span.pl-constraint {color:#008b8b;}
span.pl-comment {color: #060; font-style: italic;}
span.pl-blob {
border-radius: 1em;
background-color: #444;
margin: 0.1ex;
padding: 0ex .5ex 0.2ex 0.5ex;
color:#fff
}
/* pengines_io elements */
div.writeln {color:#000;}
pre.msg-error {color:#b00; font-weight: bold;}
pre.msg-warning {color:#b00;}
pre.msg-informational {color:#008b8b;}
pre.msg-information {color:#008b8b;}
|