| author | wenzelm |
| Mon, 11 Jul 2016 16:36:29 +0200 | |
| changeset 63441 | 4c3fa4dba79f |
| parent 62813 | 3e001fe6f16a |
| child 63683 | 87c6158f4ef4 |
| permissions | -rw-r--r-- |
|
37040
23b0b9986019
observe additional isabelle-jedit.css for component and user;
wenzelm
parents:
34131
diff
changeset
|
1 |
/* style file for Isabelle XHTML/XML output */ |
| 14542 | 2 |
|
| 61374 | 3 |
@font-face {
|
4 |
font-family: 'IsabelleText'; |
|
5 |
src: url('IsabelleText.ttf') format('truetype');
|
|
6 |
} |
|
7 |
||
8 |
@font-face {
|
|
9 |
font-family: 'IsabelleText'; |
|
10 |
src: url('IsabelleTextBold.ttf') format('truetype');
|
|
11 |
font-weight: bold; |
|
12 |
} |
|
13 |
||
| 14542 | 14 |
body { background-color: #FFFFFF; }
|
15 |
||
16 |
.head { background-color: #FFFFFF; }
|
|
| 61374 | 17 |
.source {
|
|
62812
ce22e5c3d4ce
more robust display of bidirectional Unicode text: enforce left-to-right;
wenzelm
parents:
61374
diff
changeset
|
18 |
direction: ltr; unicode-bidi: bidi-override; |
| 61374 | 19 |
background-color: #FFFFFF; |
20 |
padding: 10px; |
|
21 |
font-family: IsabelleText; |
|
22 |
line-height: 120%; |
|
23 |
} |
|
| 14542 | 24 |
|
| 59120 | 25 |
.theories { background-color: #FFFFFF; padding: 10px; }
|
26 |
.sessions { background-color: #FFFFFF; padding: 10px; }
|
|
| 14542 | 27 |
|
| 27848 | 28 |
.name { font-style: italic; }
|
29 |
.filename { font-family: fixed; }
|
|
| 23716 | 30 |
|
| 27848 | 31 |
|
| 33985 | 32 |
/* basic syntax markup */ |
| 27848 | 33 |
|
|
43592
e67d104c0c50
HTML: render control symbols more like Isabelle/Scala/jEdit;
wenzelm
parents:
43552
diff
changeset
|
34 |
.hidden { font-size: 1px; visibility: hidden; }
|
| 33985 | 35 |
|
|
43550
b416425c7ad0
tuned color, to avoid confusion with type variables;
wenzelm
parents:
43549
diff
changeset
|
36 |
.binding { color: #336655; }
|
|
43549
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
37 |
.tfree { color: #A020F0; }
|
|
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
38 |
.tvar { color: #A020F0; }
|
|
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
39 |
.free { color: blue; }
|
|
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
40 |
.skolem { color: #D2691E; }
|
|
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
41 |
.bound { color: green; }
|
|
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
42 |
.var { color: #00009B; }
|
|
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
43 |
.numeral { }
|
|
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
44 |
.literal { font-weight: bold; }
|
|
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
45 |
.delimiter { }
|
| 59120 | 46 |
.inner_string { color: #FF00CC; }
|
| 55033 | 47 |
.inner_cartouche { color: #CC6600; }
|
| 59120 | 48 |
.inner_comment { color: #CC0000; }
|
| 29320 | 49 |
|
|
43549
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
50 |
.bold { font-weight: bold; }
|
| 29320 | 51 |
|
| 59121 | 52 |
.keyword1 { color: #006699; font-weight: bold; }
|
53 |
.keyword2 { color: #009966; font-weight: bold; }
|
|
|
59123
e68e44836d04
imitate command markup and rendering of Isabelle/jEdit in HTML output;
wenzelm
parents:
59121
diff
changeset
|
54 |
.keyword3 { color: #0099FF; font-weight: bold; }
|
|
43549
bb4cff2ff556
discontinued generic XML markup -- this is for XHTML with <span/> elements;
wenzelm
parents:
43548
diff
changeset
|
55 |
.operator { }
|
| 59120 | 56 |
.string { color: #FF00CC; }
|
57 |
.alt_string { color: #CC00CC; }
|
|
58 |
.verbatim { color: #6600CC; }
|
|
| 55033 | 59 |
.cartouche { color: #CC6600; }
|
| 59120 | 60 |
.comment { color: #CC0000; }
|
| 59125 | 61 |
.improper { color: #FF5050; }
|
| 48751 | 62 |
.bad { background-color: #FF6A6A; }
|
| 27848 | 63 |