summaryrefslogtreecommitdiff
path: root/client/docgen/style.css
blob: c13b0e5fbb497b297e654a0032c1ce13c4e085c6 (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
body {
    font-family: Verdana;
    font-size: 12px;
}

a {
    color: #5c7b8b;
}

a:visited {
    color: #465d69;
}

a:hover {
    color: #000;
}

.doc {
    padding: 10px;
}

.doc .title {
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
}

.doc .tagname {
    text-align: center;
}
.doc .extends {}
.doc .container {}
.doc .screenshot {
    text-align: center;
}
.doc .description {
    padding-top: 4px;
    padding-bottom: 4px;
}

.example {
    border: solid #DEDEEE 1px;
    margin-top: 4px;
    margin-bottom: 4px;
    border-radius: 8px 8px 8px 8px;
}
.example .header {
    background-color: #D5E1E8;
    border-radius: 8px 8px 0px 0px;
    border: solid #84B0C7 1px;
    padding: 4px;
    margin: -1px;
}
.example .header .name {
    border: 0px;
    background-color: transparent;
    padding: 0px;
    border-radius: 0px;
}
.example .code {
    padding-left: 4px;
}

.attributes {}
.attribute {}
.attribute .name {
    font-weight: normal;
    font-style: italic;
    border: 0px;
    border-radius: 0px 0px 0px 0px;
    background-color: transparent;
    display: inline;
    color: green;
    font-family: courier;
    padding-right: 4px;
    padding-left: 4px;
    font-size: 1.2em;
}
.attribute .name:before {
    content:"- ";
}
.attribute .description {	
    display: inline;
}

.attributes,
.parameters {
    margin-top: 8px;
    border-top: solid #DEDEEE 1px;
    padding-top: 8px;

    margin-bottom: 8px;
    border-bottom: solid #DEDEEE 1px;
    padding-bottom: 8px;
}

.method {
    background-color: #EEF3F5;
    border: solid #DEDEEE 1px;
    padding: 4px;
    border-radius: 8px 8px 8px 8px;
    margin-bottom: 8px;
}
.method .name {
    background-color: #D5E1E8;
    width: *;
    border: solid #84B0C7 1px;
    padding: 4px;
    border-radius: 8px 8px 8px 8px;
}
.method .description {}
.method .returns {}
.method .luamethod {
    font-weight: bold;
}
.method .luatype {
    font-style: italic;
    color: blue;
}
.method .luaparms {
    font-style: italic;
    color: green;
}

.parameter {}
.parameter .name {
    font-weight: normal;
    font-style: italic;
    border: 0px;
    border-radius: 0px 0px 0px 0px;
    background-color: transparent;
    display: inline;
}
.parameter .description {	
    display: inline;
}

.code .tag {
    color: #0000FF;
}
.code .attribute {
    color: #B8840A;
}
.code .string {
    color: #BC8F8F;
}
.code .characters {
    color: #000000;
}
.code .brackets {
    color: #000000;
}

.code .keyword {
    color: #9D20F0;
}
.code .function {
    color: #0000FF;
}
.code .identifier {
    color: #000000;
}