blob: e059b3b336e7a823140c6445da1084dd3c4d57cd (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
body
{
background-color: #dddddd;
color: #000000;
padding: 8px;
margin: 0px;
}
div.title
{
text-align: center;
font-weight: bold;
font-size: 28px;
}
div.emph
{
text-align: left;
font-weight: bold;
}
div.section li.title
{
font-weight: bold;
font-size: 22px;
}
div.section li.title p
{
font-weight: normal;
font-size: 16px;
}
div.section li.title ul
{
font-weight: normal;
font-size: 16px;
}
div.section li.title ol
{
font-weight: normal;
font-size: 16px;
}
div.section li.subtitle
{
font-weight: bold;
font-size: 18px;
}
div.section li.subsubtitle
{
font-weight: bold;
font-size: 16px;
}
div.comp
{
border: thin solid #000000;
color: #000000;
background-color: #ffffe0;
padding: 14px;
}
div.comp div.title
{
font-weight: bold;
font-size: 16px;
text-align: center;
}
div.comp div.xlib ul li
{
font-family: monospace;
font-size: 12px;
font-weight: bold;
position: absolute;
width: 49%;
margin-left: 0px;
margin-top: 10px;
}
div.comp div.xcb ul li
{
font-family: monospace;
font-size: 12px;
font-weight: bold;
position: relative;
margin-left: 51%;
margin-top: 10px;
}
pre.code
{
border: thin solid #000000;
color: #000000;
background-color: #efefef;
padding: 4px;
text-align: left;
font-size: 10px;
}
pre.text
{
border: thin solid #000000;
color: #000000;
background-color: #efefef;
padding: 4px;
text-align: left;
font-size: 10px;
}
span.code
{
font-family: monospace;
font-size: 12px;
}
pre.code .type
{
color: #44bb44;
}
pre.code .function
{
color: #449fb7;
}
pre.code .include
{
color: #7d93ae;
}
pre.code .string
{
color: #ef6e4b;
}
pre.code .keyword
{
color: #00bbbb;
}
|