blob: 570c4ef90ae23cdb046a530a3c87e79ce7848d23 (
plain)
| 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
38
39
40
41
42
43
44
45
46
47
48
49
50
 | html {
   background-color : white;
   color            : black;
   font-family      : sans-serif;
}
p, ul, ol, dl, .example {
   margin-top    : 0.5em;
   margin-bottom : 0.5em;
}
pre, code {
   font-family : monospace;
}
pre {
   white-space : pre-wrap;
}
pre.make {
   white-space : pre;
}
.example {
   display          : table;
   margin-left      : 2em;
   margin-right     : 2em;
   background-color : #EEEEEE;
   padding          : 0.2em;
}
.file {
   border-color : #DDDDDD;
   border-width : thin;
   border-style : solid;
   padding      : 0;
}
.file > * {
   margin  : 0;
   padding : 0.2em;
}
.file > *:first-child {
   background-color : #DDDDDD;
   font-size        : inherit;
   font-variant     : inherit;
   font-style       : inherit;
   font-weight      : bolder;
}
 |