summaryrefslogtreecommitdiff
path: root/client/docgen/style.css
blob: 9ef9a680b39c713b629a5c23c1f1eda8db86913e (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
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;
		font-family: courier;
}

.doc .extends {}
.doc .container {}
.doc .screenshot {
		text-align: center;
}
.doc .description {
		padding-top: 4px;
		padding-bottom: 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 {}

.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;
}

.method .luamethod {
    font-weight: bold;
}

.method .luatype {
    font-style: italic;
    color: blue;
}

.method .luaparms {
    font-style: italic;
    color: green;
}