FreeCAD

Форк
0
/
customdoxygen.css 
370 строк · 6.4 Кб
1
@font-face {
2
    font-family: 'Fira Sans';
3
    src: url('/fonts/FiraSans-Regular.eot');
4
    src: local('☺'), url('/fonts/FiraSans-Regular.woff') format('woff'), url('/fonts/FiraSans-Regular.ttf') format('truetype'), url('/fonts/FiraSans-Regular.svg') format('svg');
5
    font-weight: 400;
6
    font-style: normal;
7
}
8

9
@font-face {
10
    font-family: 'Roboto';
11
    src: url('/fonts/Roboto.eot');
12
    src: local('☺'), url('/fonts/Roboto.woff') format('woff'), url('/fonts/Roboto.ttf') format('truetype'), url('/fonts/Roboto.svg') format('svg');
13
    font-weight: 400;
14
    font-style: normal;
15
}
16

17
h1, .h1, h2, .h2, h3, .h3{
18
    font-weight: 200 !important;
19
}
20

21
#navrow1, #navrow2, #navrow3, #navrow4, #navrow5{
22
    border-bottom: 1px solid #EEEEEE;
23
}
24

25
.adjust-right {
26
margin-left: 30px !important;
27
font-size: 1.15em !important;
28
}
29
.navbar{
30
 background-color: #222;
31
}
32
table{
33
    white-space:pre-wrap !important;
34
}
35
/*
36
 ===========================
37
 */
38

39
/* DOXYGEN Code Styles
40
----------------------------------- */
41

42

43
a.qindex {
44
    font-weight: bold;
45
}
46

47
a.qindexHL {
48
    font-weight: bold;
49
    background-color: #9CAFD4;
50
    color: #ffffff;
51
    border: 1px double #869DCA;
52
}
53

54
.contents a.qindexHL:visited {
55
    color: #ffffff;
56
}
57

58
a.code, a.code:visited, a.line, a.line:visited {
59
    color: #4665A2;
60
}
61

62
a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited {
63
    color: #4665A2;
64
}
65

66
/* @end */
67

68
dl.el {
69
    margin-left: -1cm;
70
}
71

72
pre.fragment {
73
    border: 1px solid #C4CFE5;
74
    background-color: #FBFCFD;
75
    padding: 4px 6px;
76
    margin: 4px 8px 4px 2px;
77
    overflow: auto;
78
    word-wrap: break-word;
79
    font-size:  9pt;
80
    line-height: 125%;
81
    font-family: monospace, fixed;
82
    font-size: 105%;
83
}
84

85
div.fragment {
86
    padding: 4px 6px;
87
    margin: 4px 8px 4px 2px;
88
    border: 1px solid #C4CFE5;
89
}
90

91
div.line {
92
    font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
93
    font-size: 12px;
94
    min-height: 13px;
95
    line-height: 1.0;
96
    text-wrap: unrestricted;
97
    white-space: -moz-pre-wrap; /* Moz */
98
    white-space: -pre-wrap;     /* Opera 4-6 */
99
    white-space: -o-pre-wrap;   /* Opera 7 */
100
    white-space: pre-wrap;      /* CSS3  */
101
    word-wrap: normal;      /* IE 5.5+ */
102
    text-indent: -53px;
103
    padding-left: 53px;
104
    padding-bottom: 0px;
105
    margin: 0px;
106
    -webkit-transition-property: background-color, box-shadow;
107
    -webkit-transition-duration: 0.5s;
108
    -moz-transition-property: background-color, box-shadow;
109
    -moz-transition-duration: 0.5s;
110
    -ms-transition-property: background-color, box-shadow;
111
    -ms-transition-duration: 0.5s;
112
    -o-transition-property: background-color, box-shadow;
113
    -o-transition-duration: 0.5s;
114
    transition-property: background-color, box-shadow;
115
    transition-duration: 0.5s;
116
}
117
div.line:hover{
118
    background-color: #FBFF00;
119
}
120

121
div.line.glow {
122
    background-color: cyan;
123
    box-shadow: 0 0 10px cyan;
124
}
125

126

127
span.lineno {
128
    padding-right: 4px;
129
    text-align: right;
130
    color:rgba(0,0,0,0.3);
131
    border-right: 1px solid #EEE;
132
    border-left: 1px solid #EEE;
133
    background-color: #FFF;
134
    white-space: pre;
135
    font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace ;
136
}
137
span.lineno a {
138
    background-color: #FAFAFA;
139
    cursor:pointer;
140
}
141

142
span.lineno a:hover {
143
    background-color: #EFE200;
144
    color: #1e1e1e;
145
}
146

147
div.groupHeader {
148
    margin-left: 16px;
149
    margin-top: 12px;
150
    font-weight: bold;
151
}
152

153
div.groupText {
154
    margin-left: 16px;
155
    font-style: italic;
156
}
157

158
/* @group Code Colorization */
159

160
span.keyword {
161
    color: #008000
162
}
163

164
span.keywordtype {
165
    color: #604020
166
}
167

168
span.keywordflow {
169
    color: #e08000
170
}
171

172
span.comment {
173
    color: #800000
174
}
175

176
span.preprocessor {
177
    color: #806020
178
}
179

180
span.stringliteral {
181
    color: #002080
182
}
183

184
span.charliteral {
185
    color: #008080
186
}
187

188
span.vhdldigit {
189
    color: #ff00ff
190
}
191

192
span.vhdlchar {
193
    color: #000000
194
}
195

196
span.vhdlkeyword {
197
    color: #700070
198
}
199

200
span.vhdllogic {
201
    color: #ff0000
202
}
203

204
blockquote {
205
    background-color: #F7F8FB;
206
    border-left: 2px solid #9CAFD4;
207
    margin: 0 24px 0 4px;
208
    padding: 0 12px 0 16px;
209
}
210

211
/*---------------- Search Box */
212

213
#search-box {
214
  margin: 10px 0px;
215
}
216
#search-box .close {
217
  display: none;
218
  position: absolute;
219
  right: 0px;
220
  padding: 6px 12px;
221
  z-index: 5;
222
}
223

224
/*---------------- Search results window */
225

226
#search-results-window {
227
  display: none;
228
}
229

230
iframe#MSearchResults {
231
  width: 100%;
232
  height: 15em;
233
}
234

235
.SRChildren {
236
  padding-left: 3ex; padding-bottom: .5em
237
}
238
.SRPage .SRChildren {
239
  display: none;
240
}
241
a.SRScope {
242
  display: block;
243
}
244
a.SRSymbol:focus, a.SRSymbol:active,
245
a.SRScope:focus, a.SRScope:active {
246
  text-decoration: underline;
247
}
248
span.SRScope {
249
  padding-left: 4px;
250
}
251
.SRResult {
252
  display: none;
253
}
254

255
/* class and file list */
256
.directory .icona,
257
.directory .arrow {
258
  height: auto;
259
}
260
.directory .icona .icon {
261
  height: 16px;
262
}
263
.directory .icondoc {
264
  background-position: 0px 0px;
265
  height: 20px;
266
}
267
.directory .iconfopen {
268
  background-position: 0px 0px;
269
}
270
.directory td.entry {
271
  padding: 7px 8px 6px 8px;
272
}
273

274
.table > tbody > tr > td.memSeparator {
275
  line-height: 0;
276
  .table-hover;
277

278
}
279

280
/*.memItemLeft, .memTemplItemLeft {
281
  white-space: normal;
282
} */
283

284
/* enumerations */
285
.panel-body thead > tr {
286
  background-color: #e0e0e0;
287
}
288

289
/* todo lists */
290
.todoname,
291
.todoname a {
292
  font-weight: bold;
293
}
294

295
/* Class title */
296
.summary {
297
  margin-top: 25px;
298
}
299
.page-header .title {
300
  display: inline-block;
301
}
302
.page-header .pull-right {
303
  margin-top: 0.3em;
304
  margin-left: 0.5em;
305
}
306
.page-header .label {
307
  font-size: 50%;
308
}
309

310
/* FreeCAD-specific */
311
.directory td.entry {
312
    max-width: 400px;
313
}
314
pre.fragment {
315
    border: none;
316
    padding: 0;
317
    margin: 0;
318
    font-family: roboto;
319
}
320
.memdoc p {
321
    text-align: left;
322
}
323
.maincontents {
324
    display: none;
325
}
326
body {
327
    display: flex;
328
    min-height: 100vh;
329
    flex-direction: column;
330
    justify-content: space-between;
331
}
332
body, table, div, p, dl {
333
    font: 400 16px/22px 'Fira Sans' ,sans-serif;
334
}
335
#main-nav {
336
    display: none;
337
}
338
.navbar {
339
    font-family: 'Roboto', sans-serif;
340
    text-transform: uppercase;
341
    list-style-type: none;
342
    margin: 0;
343
    padding: 0;
344
    overflow: hidden;
345
    background-color: #222;
346
    display: flex;
347
    gap: 20px;
348
    align-items: center;
349
    height: 72px;
350
    padding: 0 10px;
351
}
352
.navbar li {
353
    float: left;
354
}
355
.navbar li a {
356
    color: #fff;
357
    display: block;
358
}
359
.navbar logo {
360
    height: 140px
361
}
362
.footer {
363
    background-color: #222;
364
    padding: 25px 0;
365
    color: #eee;
366
    text-align: center !important;
367
}
368
.sm.sm-dox {
369
    display: none;
370
}
371

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.