summaryrefslogtreecommitdiff
path: root/docs/fpdoc.css
blob: 87e90189eec7edff9c49090dc0422d7fb3ab0dc2 (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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
  Custom style sheets created for fpGUI class documentation.
  Graeme Geldenhuys - 2015-03-10

  I found the default blue theme of FPDoc a bit dated and needed some change.
  Rather than play with colour, I muted the colours used and opted to rather
  use fonts to add some style to the layout.

  TODO:
    - Add media support
*/

@font-face {
  font-family:'Open Sans';
  font-style:normal;
  font-weight:300;
  src:local("Open Sans Light"),local("OpenSans-Light"),url(//fonts.gstatic.com/s/opensans/v10/DXI1ORHCpsQm3Vp6mXoaTYnF5uFdDttMLvmWuJdhhgs.ttf) format("truetype")
}
@font-face {
  font-family:'Open Sans';
  font-style:normal;
  font-weight:400;
  src:local("Open Sans"),local("OpenSans"),url(//fonts.gstatic.com/s/opensans/v10/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf) format("truetype")
}
@font-face {
  font-family:'Open Sans';
  font-style:normal;
  font-weight:600;
  src:local("Open Sans Semibold"),local("OpenSans-Semibold"),url(//fonts.gstatic.com/s/opensans/v10/MTP_ySUJH_bn48VBG8sNSonF5uFdDttMLvmWuJdhhgs.ttf) format("truetype")
}
@font-face {
  font-family:'Open Sans';
  font-style:normal;
  font-weight:700;
  src:local("Open Sans Bold"),local("OpenSans-Bold"),url(//fonts.gstatic.com/s/opensans/v10/k3k702ZOKiLJc3WVjuplzInF5uFdDttMLvmWuJdhhgs.ttf) format("truetype")
}
@font-face {
  font-family:'Open Sans';
  font-style:normal;
  font-weight:800;
  src:local("Open Sans Extrabold"),local("OpenSans-Extrabold"),url(//fonts.gstatic.com/s/opensans/v10/EInbV5DfGHOiMmvb1Xr-honF5uFdDttMLvmWuJdhhgs.ttf) format("truetype")
}
@font-face {
  font-family:'Droid Sans Mono';
  font-style:normal;
  font-weight:400;
  src:local("Droid Sans Mono"),local("DroidSansMono"),url(//fonts.gstatic.com/s/droidsansmono/v7/ns-m2xQYezAtqh7ai59hJUYuTAAIFFn5GTWtryCmBQ4.woff) format("woff")
}

/*
@media (max-width: 980px) {
  body {
    font-size:calc-em(14px)
  }
}
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0px;
  padding: 0px;
  border: 0px none;
  font-size: 14px;
}

body {
  background-color: white;
  color: rgb(64, 66, 68);
  width: 80%;
  padding: 35px;
  box-sizing: border-box;
  font-weight: 400;
}

body, p, th, td, caption, h1, h2, h3, ul, ol, dl {
/*  color: black;  */
  font-family: "Open Sans",Arial,Helvetica,sans-serif;
}

/*
tt, span.kw, pre {
  font-family: "Droid Sans Mono", "Courier New", monospace;
}
*/

pre {
  font-family: "Droid Sans Mono", "Courier New", monospace;
  color: #FFF;
  display: block;
  background-color: #404244;
  padding: 25px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  margin: 1.5em 0px 0.8em;
}

p {
  line-height: 1.56em;
  margin-bottom: 1.5em;
  color: #404244;
  max-width: 85%;

}

/*
body, p, th, td, caption, ul, ol, dl, tt, span.kw, pre {
  font-size: 14px
}
*/

h1 {
  margin-bottom: 1em;
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

a {
  color: #5CAA15;
  text-decoration: none;
  transition-duration: 0.3s;
}

a:hover {
  color:#46a2da
}

p.cmt {
  color: gray;
  max-width: 100%;
}

/*
table, table td, table th {
  border: 1px solid #EEE;
}
*/

/* source fragments */
span.code {
  white-space: nowrap
}

table.remark {
  background-color: #ffffc0;
  width: 80%
}

table.bar {
  background-color: #EEE;
  padding: 8px;
}

td p {
 margin: 0;
}

td b {
  font-weight: normal;
}

td b a {
  color: #08860A;
}

dt {
  float: left;
}

dd {
    margin: 0px 0px 0px 110px;
    padding: 0px 0px 0.5em;
    width: 80%;
}

/* keywords in source fragments */
span.kw {
  font-weight: bold
}

/* comments in source fragments */
span.cmt {
  color: #729046;
}


span.toggletreeclose {
    background: url(minus.png) center left no-repeat;
    padding-left: 20px;
}

span.toggletreeopen {
    background: url(plus.png) center left no-repeat;
    padding-left: 20px;
}

ul.classtreelist li {
	padding-left: 30px; }

ul.classtreelist { list-style-type:none; }

li.classtree ul { display: block; }

li.classtreeclosed ul { display: none; }