psdi-data-conversion 0.0.23__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. psdi_data_conversion/__init__.py +11 -0
  2. psdi_data_conversion/app.py +242 -0
  3. psdi_data_conversion/bin/linux/atomsk +0 -0
  4. psdi_data_conversion/bin/linux/c2x +0 -0
  5. psdi_data_conversion/bin/mac/atomsk +0 -0
  6. psdi_data_conversion/bin/mac/c2x +0 -0
  7. psdi_data_conversion/constants.py +185 -0
  8. psdi_data_conversion/converter.py +459 -0
  9. psdi_data_conversion/converters/__init__.py +6 -0
  10. psdi_data_conversion/converters/atomsk.py +32 -0
  11. psdi_data_conversion/converters/base.py +702 -0
  12. psdi_data_conversion/converters/c2x.py +32 -0
  13. psdi_data_conversion/converters/openbabel.py +239 -0
  14. psdi_data_conversion/database.py +1064 -0
  15. psdi_data_conversion/dist.py +87 -0
  16. psdi_data_conversion/file_io.py +216 -0
  17. psdi_data_conversion/log_utility.py +241 -0
  18. psdi_data_conversion/main.py +776 -0
  19. psdi_data_conversion/scripts/atomsk.sh +32 -0
  20. psdi_data_conversion/scripts/c2x.sh +26 -0
  21. psdi_data_conversion/security.py +38 -0
  22. psdi_data_conversion/static/content/accessibility.htm +254 -0
  23. psdi_data_conversion/static/content/convert.htm +121 -0
  24. psdi_data_conversion/static/content/convertato.htm +65 -0
  25. psdi_data_conversion/static/content/convertc2x.htm +65 -0
  26. psdi_data_conversion/static/content/documentation.htm +94 -0
  27. psdi_data_conversion/static/content/feedback.htm +53 -0
  28. psdi_data_conversion/static/content/header-links.html +8 -0
  29. psdi_data_conversion/static/content/index-versions/header-links.html +8 -0
  30. psdi_data_conversion/static/content/index-versions/psdi-common-footer.html +99 -0
  31. psdi_data_conversion/static/content/index-versions/psdi-common-header.html +28 -0
  32. psdi_data_conversion/static/content/psdi-common-footer.html +99 -0
  33. psdi_data_conversion/static/content/psdi-common-header.html +28 -0
  34. psdi_data_conversion/static/content/report.htm +103 -0
  35. psdi_data_conversion/static/data/data.json +143940 -0
  36. psdi_data_conversion/static/img/colormode-toggle-dm.svg +3 -0
  37. psdi_data_conversion/static/img/colormode-toggle-lm.svg +3 -0
  38. psdi_data_conversion/static/img/psdi-icon-dark.svg +136 -0
  39. psdi_data_conversion/static/img/psdi-icon-light.svg +208 -0
  40. psdi_data_conversion/static/img/psdi-logo-darktext.png +0 -0
  41. psdi_data_conversion/static/img/psdi-logo-lighttext.png +0 -0
  42. psdi_data_conversion/static/img/social-logo-bluesky-black.svg +4 -0
  43. psdi_data_conversion/static/img/social-logo-bluesky-white.svg +4 -0
  44. psdi_data_conversion/static/img/social-logo-instagram-black.svg +1 -0
  45. psdi_data_conversion/static/img/social-logo-instagram-white.svg +1 -0
  46. psdi_data_conversion/static/img/social-logo-linkedin-black.png +0 -0
  47. psdi_data_conversion/static/img/social-logo-linkedin-white.png +0 -0
  48. psdi_data_conversion/static/img/social-logo-mastodon-black.svg +4 -0
  49. psdi_data_conversion/static/img/social-logo-mastodon-white.svg +4 -0
  50. psdi_data_conversion/static/img/social-logo-x-black.svg +3 -0
  51. psdi_data_conversion/static/img/social-logo-x-white.svg +3 -0
  52. psdi_data_conversion/static/img/social-logo-youtube-black.png +0 -0
  53. psdi_data_conversion/static/img/social-logo-youtube-white.png +0 -0
  54. psdi_data_conversion/static/img/ukri-epsr-logo-darktext.png +0 -0
  55. psdi_data_conversion/static/img/ukri-epsr-logo-lighttext.png +0 -0
  56. psdi_data_conversion/static/img/ukri-logo-darktext.png +0 -0
  57. psdi_data_conversion/static/img/ukri-logo-lighttext.png +0 -0
  58. psdi_data_conversion/static/javascript/accessibility.js +196 -0
  59. psdi_data_conversion/static/javascript/common.js +42 -0
  60. psdi_data_conversion/static/javascript/convert.js +296 -0
  61. psdi_data_conversion/static/javascript/convert_common.js +252 -0
  62. psdi_data_conversion/static/javascript/convertato.js +107 -0
  63. psdi_data_conversion/static/javascript/convertc2x.js +107 -0
  64. psdi_data_conversion/static/javascript/data.js +176 -0
  65. psdi_data_conversion/static/javascript/format.js +611 -0
  66. psdi_data_conversion/static/javascript/load_accessibility.js +89 -0
  67. psdi_data_conversion/static/javascript/psdi-common.js +177 -0
  68. psdi_data_conversion/static/javascript/report.js +381 -0
  69. psdi_data_conversion/static/styles/format.css +147 -0
  70. psdi_data_conversion/static/styles/psdi-common.css +705 -0
  71. psdi_data_conversion/templates/index.htm +114 -0
  72. psdi_data_conversion/testing/__init__.py +5 -0
  73. psdi_data_conversion/testing/constants.py +12 -0
  74. psdi_data_conversion/testing/conversion_callbacks.py +394 -0
  75. psdi_data_conversion/testing/conversion_test_specs.py +208 -0
  76. psdi_data_conversion/testing/utils.py +522 -0
  77. psdi_data_conversion-0.0.23.dist-info/METADATA +663 -0
  78. psdi_data_conversion-0.0.23.dist-info/RECORD +81 -0
  79. psdi_data_conversion-0.0.23.dist-info/WHEEL +4 -0
  80. psdi_data_conversion-0.0.23.dist-info/entry_points.txt +2 -0
  81. psdi_data_conversion-0.0.23.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,705 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');
2
+
3
+ :root {
4
+ /* PSDI Common Style Definition */
5
+ /* ---------------------------- */
6
+ /* */
7
+ /* This file defines the common PSDI style scheme. The variable */
8
+ /* definitions here can be modified to alter this scheme, and they will be */
9
+ /* included and used appropriately by the various builders. */
10
+
11
+
12
+ /* Font */
13
+ --ifm-font-size-base : 1rem;
14
+ --ifm-line-height-base : 1.5;
15
+ --ifm-font-family-base : Lato, Helvetica, Verdana, Arial, Lucida, sans-serif;
16
+ --ifm-heading-font-family : Oswald, Helvetica, Verdana, Arial, Lucida, sans-serif;
17
+ --ifm-font-weight-base : normal;
18
+ --psdi-letter-spacing-base: normal;
19
+
20
+ /* Background and text colors */
21
+
22
+ --psdi-dark-text-color-body : #000000;
23
+ --psdi-dark-text-color-heading : #041E42;
24
+ --psdi-light-text-color-body : #ffffff;
25
+ --psdi-light-text-color-heading: #ffffff;
26
+
27
+ /* Default color (light mode) */
28
+ --psdi-text-color-default-body : var(--psdi-dark-text-color-body);
29
+ --psdi-text-color-default-heading: var(--psdi-dark-text-color-heading);
30
+ --psdi-bg-color-default : #ffffff;
31
+
32
+ /* Default color (dark mode) */
33
+ --psdi-dm-text-color-default-body : var(--psdi-light-text-color-body);
34
+ --psdi-dm-text-color-default-heading: var(--psdi-light-text-color-heading);
35
+ --psdi-dm-bg-color-default : #000000;
36
+
37
+ /* Primary color (light mode) - used for Hero panel and footer */
38
+ --psdi-bg-color-primary : #041e42;
39
+ --psdi-bg-color-primary-dark : #041b3b;
40
+ --psdi-bg-color-primary-darker : #031938;
41
+ --psdi-bg-color-primary-darkest : #03152e;
42
+ --psdi-bg-color-primary-light : #042149;
43
+ --psdi-bg-color-primary-lighter : #05224c;
44
+ --psdi-bg-color-primary-lightest: #052756;
45
+
46
+ /* Primary color (dark mode) */
47
+ --psdi-dm-bg-color-primary : #96caf4;
48
+ --psdi-dm-bg-color-primary-dark : #72b8f0;
49
+ --psdi-dm-bg-color-primary-darker : #61afee;
50
+ --psdi-dm-bg-color-primary-darkest : #2b94e9;
51
+ --psdi-dm-bg-color-primary-light : #badcf8;
52
+ --psdi-dm-bg-color-primary-lighter : #cbe5fa;
53
+ --psdi-dm-bg-color-primary-lightest: #ffffff;
54
+
55
+ /* Secondary color (light mode) */
56
+ --psdi-text-color-secondary-body : var(--psdi-dark-text-color-body);
57
+ --psdi-text-color-secondary-heading: var(--psdi-dark-text-color-heading);
58
+ --psdi-bg-color-secondary : #e5e1e6;
59
+ --psdi-bg-color-secondary-dark : #cfc8d1;
60
+ --psdi-bg-color-secondary-darker : #c5bcc7;
61
+ --psdi-bg-color-secondary-darkest : #a497a8;
62
+ --psdi-bg-color-secondary-light : #f0edf0;
63
+ --psdi-bg-color-secondary-lighter : #fbfafb;
64
+ --psdi-bg-color-secondary-lightest : #ffffff;
65
+
66
+ /* Secondary color (dark mode) */
67
+ --psdi-dm-text-color-secondary-body : var(--psdi-dark-text-color-body);
68
+ --psdi-dm-text-color-secondary-heading: var(--psdi-dark-text-color-heading);
69
+ --psdi-dm-bg-color-secondary : #bbbbbb;
70
+ --psdi-dm-bg-color-secondary-dark : #a8a8a8;
71
+ --psdi-dm-bg-color-secondary-darker : #9f9f9f;
72
+ --psdi-dm-bg-color-secondary-darkest : #838383;
73
+ --psdi-dm-bg-color-secondary-light : #cecece;
74
+ --psdi-dm-bg-color-secondary-lighter : #d7d7d7;
75
+ --psdi-dm-bg-color-secondary-lightest : #f3f3f3;
76
+
77
+ /* Success color */
78
+ --ifm-color-success : #5aa2ae;
79
+ --ifm-color-success-dark : #4e949f;
80
+ --ifm-color-success-darker : #4a8c97;
81
+ --ifm-color-success-darkest : #3d737c;
82
+ --ifm-color-success-light : #6cacb7;
83
+ --ifm-color-success-lighter : #75b1bb;
84
+ --ifm-color-success-lightest: #8fc0c8;
85
+
86
+ /* Info color */
87
+ --ifm-color-info : #3d7cc9;
88
+ --ifm-color-info-dark : #336fb8;
89
+ --ifm-color-info-darker : #3069ae;
90
+ --ifm-color-info-darkest : #28578f;
91
+ --ifm-color-info-light : #518acf;
92
+ --ifm-color-info-lighter : #5c91d2;
93
+ --ifm-color-info-lightest: #7aa6da;
94
+
95
+ /* Warning color */
96
+ --ifm-color-warning : #ff9e18;
97
+ --ifm-color-warning-dark : #fb9200;
98
+ --ifm-color-warning-darker : #ed8a00;
99
+ --ifm-color-warning-darkest : #c37100;
100
+ --ifm-color-warning-light : #ffaa34;
101
+ --ifm-color-warning-lighter : #ffb042;
102
+ --ifm-color-warning-lightest: #ffc16c;
103
+
104
+ /* Danger color */
105
+ --ifm-color-danger : #993366;
106
+ --ifm-color-danger-dark : #8a2e5c;
107
+ --ifm-color-danger-darker : #822b57;
108
+ --ifm-color-danger-darkest : #6b2447;
109
+ --ifm-color-danger-light : #a83870;
110
+ --ifm-color-danger-lighter : #b03b75;
111
+ --ifm-color-danger-lightest: #c24785;
112
+
113
+ /* Footer */
114
+ --ifm-footer-background-color: var(--ifm-color-primary);
115
+ --ifn-footer-title-color : var(--ifm-font-color-base-inverse);
116
+ --ifm-footer-color : var(--ifm-font-color-base-inverse);
117
+ --ifm-footer-link-color : var(--ifm-font-color-base-inverse);
118
+ --ifm-footer-link-hover-color: var(--ifm-font-color-base-inverse);
119
+
120
+ /* Button color */
121
+ --ifm-button-background-color : var(--psdi-bg-color-secondary);
122
+ --ifm-button-background-color-dark: var(--psdi-bg-color-secondary-dark);
123
+ --ifm-button-color : var(--psdi-dark-text-color-heading);
124
+
125
+ /* Border colors */
126
+ --psdi-border-color-light: #f5f6f7;
127
+ --psdi-border-color-dark : #111111;
128
+
129
+ /* Link styling */
130
+ --ifm-link-color : inherit;
131
+ --ifm-link-hover-color : inherit;
132
+ --ifm-navbar-link-hover-color: inherit;
133
+
134
+ /* Set specific colors to used based on light/dark-mode */
135
+ /* Define light mode here first, as default */
136
+ --ifm-background-color: var(--psdi-bg-color-default);
137
+
138
+ --ifm-color-primary : var(--psdi-bg-color-primary);
139
+ --ifm-color-primary-dark : var(--psdi-bg-color-primary-dark);
140
+ --ifm-color-primary-darker : var(--psdi-bg-color-primary-darker);
141
+ --ifm-color-primary-darkest : var(--psdi-bg-color-primary-darkest);
142
+ --ifm-color-primary-light : var(--psdi-bg-color-primary-light);
143
+ --ifm-color-primary-lighter : var(--psdi-bg-color-primary-lighter);
144
+ --ifm-color-primary-lightest: var(--psdi-bg-color-primary-lightest);
145
+
146
+ --ifm-color-secondary : var(--psdi-bg-color-secondary);
147
+ --ifm-color-secondary-dark : var(--psdi-bg-color-secondary-dark);
148
+ --ifm-background-color-secondary: var(--psdi-bg-color-secondary);
149
+
150
+ --ifm-font-color-base : var(--psdi-dark-text-color-body);
151
+ --ifm-hero-text-color : var(--psdi-light-text-color-body);
152
+ --ifm-heading-color : var(--psdi-dark-text-color-heading);
153
+ --psdi-heading-color-inverse : var(--psdi-light-text-color-heading);
154
+ --ifm-font-color-secondary : var(--psdi-text-color-secondary-body);
155
+ --ifm-heading-color-secondary: var(--psdi-dark-text-color-heading);
156
+ --psdi-font-color-faint : gray;
157
+
158
+ --psdi-border-color: var(--psdi-border-color-light);
159
+
160
+ --lm-display: inherit;
161
+ --dm-display: none;
162
+
163
+ }
164
+
165
+ [data-theme='dark'] {
166
+
167
+ /* Set dark mode colors here */
168
+ --ifm-background-color: var(--psdi-dm-bg-color-default);
169
+
170
+ --ifm-color-primary : var(--psdi-dm-bg-color-primary);
171
+ --ifm-color-primary-dark : var(--psdi-dm-bg-color-primary-dark);
172
+ --ifm-color-primary-darker : var(--psdi-dm-bg-color-primary-darker);
173
+ --ifm-color-primary-darkest : var(--psdi-dm-bg-color-primary-darkest);
174
+ --ifm-color-primary-light : var(--psdi-dm-bg-color-primary-light);
175
+ --ifm-color-primary-lighter : var(--psdi-dm-bg-color-primary-lighter);
176
+ --ifm-color-primary-lightest: var(--psdi-dm-bg-color-primary-lightest);
177
+
178
+ --ifm-color-secondary : var(--psdi-dm-bg-color-secondary);
179
+ --ifm-color-secondary-dark : var(--psdi-dm-bg-color-secondary-dark);
180
+ --ifm-background-color-secondary: var(--psdi-dm-bg-color-secondary);
181
+
182
+ --ifm-font-color-base : var(--psdi-light-text-color-body);
183
+ --ifm-hero-text-color : var(--psdi-dark-text-color-body);
184
+ --ifm-heading-color : var(--psdi-light-text-color-heading);
185
+ --psdi-heading-color-inverse : var(--psdi-dark-text-color-heading);
186
+ --ifm-font-color-secondary : var(--psdi-dm-text-color-secondary-body);
187
+ --ifm-heading-color-secondary: var(--psdi-dark-text-color-heading);
188
+ --psdi-font-color-faint : gray;
189
+
190
+ --psdi-border-color: var(--psdi-border-color-dark);
191
+
192
+ --lm-display: none;
193
+ --dm-display: inherit;
194
+ }
195
+
196
+ * {
197
+ box-sizing: border-box;
198
+ }
199
+
200
+ html {
201
+ -webkit-font-smoothing : antialiased;
202
+ text-rendering : optimizelegibility;
203
+ -webkit-text-size-adjust: 100%;
204
+ text-size-adjust : 100%;
205
+ }
206
+
207
+ body {
208
+ min-height : 100vh;
209
+ font-family : var(--ifm-font-family-base);
210
+ font-size : var(--ifm-font-size-base);
211
+ font-weight : var(--ifm-font-weight-base);
212
+ background-color: var(--ifm-background-color);
213
+ color : var(--ifm-font-color-base);
214
+ letter-spacing : var(--psdi-letter-spacing-base);
215
+ line-height : var(--ifm-line-height-base);
216
+ display : flex;
217
+ flex-direction : column;
218
+ justify-content : space-between;
219
+ padding : 0;
220
+ margin : 0;
221
+ word-wrap : break-word;
222
+ }
223
+
224
+ #cover {
225
+ position : fixed;
226
+ height : 100%;
227
+ width : 100%;
228
+ top : 0;
229
+ left : 0;
230
+ background: var(--ifm-background-color);
231
+ z-index : 9999;
232
+ }
233
+
234
+ select,
235
+ option,
236
+ input {
237
+ font-family : var(--ifm-font-family-base);
238
+ font-size : var(--ifm-font-size-base);
239
+ font-weight : var(--ifm-font-weight-base);
240
+ background-color: var(--ifm-background-color);
241
+ color : var(--ifm-font-color-base);
242
+ letter-spacing : var(--psdi-letter-spacing-base);
243
+ line-height : var(--ifm-line-height-base);
244
+ }
245
+
246
+ option:checked {
247
+ background-color: var(--ifm-color-primary);
248
+ color : var(--ifm-hero-text-color);
249
+ }
250
+
251
+ input::placeholder {
252
+ color : var(--psdi-font-color-faint);
253
+ font-style: italic;
254
+ }
255
+
256
+ button,
257
+ input.button {
258
+ font-family : var(--ifm-font-family-base);
259
+ font-size : var(--ifm-font-size-base);
260
+ font-weight : var(--ifm-font-weight-base);
261
+ color : var(--ifm-hero-text-color);
262
+ background-color: var(--ifm-color-primary);
263
+ letter-spacing : var(--psdi-letter-spacing-base);
264
+ line-height : var(--ifm-line-height-base);
265
+ border-radius : 0.25rem;
266
+ margin : 0.25rem;
267
+ }
268
+
269
+ *:has(> .max-width-box) {
270
+ display : flex;
271
+ justify-content: center;
272
+ }
273
+
274
+ body>* {
275
+ flex-grow: 1;
276
+ padding : 0.5rem 0;
277
+ }
278
+
279
+ #__docusaurus {
280
+ padding: 0;
281
+ }
282
+
283
+ .max-width-box {
284
+ max-width: 1320px;
285
+ }
286
+
287
+ .lm-only {
288
+ display: var(--lm-display);
289
+ }
290
+
291
+ .dm-only {
292
+ display: var(--dm-display);
293
+ }
294
+
295
+ .announcementBar_mb4j,
296
+ .header,
297
+ .hero,
298
+ .footer {
299
+ flex: none;
300
+ }
301
+
302
+ .announcementBar_mb4j {
303
+ background-color: #ff89a2;
304
+ color : black;
305
+ display : flex;
306
+ flex-direction : column;
307
+ align-items : center;
308
+ padding : 0;
309
+ border-bottom : 1px solid var(--psdi-border-color);
310
+ height : auto;
311
+ }
312
+
313
+ .announcementBarContent_xLdY {
314
+ font-size : 0.9rem;
315
+ padding : 5px 0;
316
+ text-align: center;
317
+ }
318
+
319
+ .header .max-width-box {
320
+ display : flex;
321
+ flex : auto;
322
+ justify-content: space-around;
323
+ align-items : center;
324
+ }
325
+
326
+ .header-left {
327
+ display : flex;
328
+ flex : 1 1 50%;
329
+ flex-direction: row;
330
+ align-items : center;
331
+ }
332
+
333
+ .navbar__item {
334
+ padding : 0.5rem 0.75rem;
335
+ font-weight: var(--ifm-font-weight-base);
336
+ }
337
+
338
+ #psdi-header .navbar__items--right {
339
+ display : flex;
340
+ flex : 1 1 50%;
341
+ flex-direction : row;
342
+ flex-wrap : wrap;
343
+ justify-content: right;
344
+ align-items : center;
345
+ }
346
+
347
+ #psdi-header .clean-btn {
348
+ background : none;
349
+ border : none;
350
+ color : inherit;
351
+ cursor : pointer;
352
+ font-family : inherit;
353
+ padding : 0;
354
+ align-items : center;
355
+ border-radius : 50%;
356
+ display : flex;
357
+ justify-content: center;
358
+ height : 2rem;
359
+ width : 2rem;
360
+ }
361
+
362
+ [data-theme='dark'] #psdi-header .clean-btn {
363
+ background-color: black;
364
+ }
365
+
366
+ #psdi-header .clean-btn:hover {
367
+ background: var(--ifm-background-color-secondary);
368
+ }
369
+
370
+ #psdi-header .clean-btn:active {
371
+ background: inherit;
372
+ }
373
+
374
+ h1,
375
+ h2,
376
+ h3,
377
+ h4,
378
+ h5,
379
+ h6 {
380
+ color : var(--ifm-heading-color);
381
+ font-family: var(--ifm-heading-font-family);
382
+ font-weight: bold;
383
+ margin : 0 0 1rem 0;
384
+ }
385
+
386
+ .marginless_header {
387
+ margin: 0;
388
+ }
389
+
390
+ h1 {
391
+ font-size: 3rem;
392
+ }
393
+
394
+ h2 {
395
+ font-size: 2.5rem;
396
+ }
397
+
398
+ h3 {
399
+ font-size: 2rem;
400
+ }
401
+
402
+ h4 {
403
+ font-size: 1.75rem;
404
+ }
405
+
406
+ h5 {
407
+ font-size: 1.5rem;
408
+ }
409
+
410
+ h6 {
411
+ font-size: 1.25rem;
412
+ }
413
+
414
+ p {
415
+ margin: 0 0 1.25rem 0;
416
+ }
417
+
418
+ .text--center {
419
+ text-align: center;
420
+ }
421
+
422
+ #psdi-header ul,
423
+ #psdi-footer ul {
424
+ list-style: none;
425
+ padding : 0;
426
+ }
427
+
428
+ .hero,
429
+ .footer {
430
+ color: var(--ifm-hero-text-color);
431
+ }
432
+
433
+ .hero {
434
+ background-color: var(--ifm-color-primary);
435
+ }
436
+
437
+ .hero .max-width-box {
438
+ display : flex;
439
+ flex-direction: column;
440
+ align-items : center;
441
+ margin : 2rem;
442
+ }
443
+
444
+ .hero__title {
445
+ font-size: 3rem;
446
+ }
447
+
448
+ .hero__subtitle {
449
+ font-size: 1.5rem;
450
+ }
451
+
452
+ .secondary {
453
+ background-color: var(--ifm-background-color-secondary);
454
+ }
455
+
456
+ .hero h1,
457
+ .hero h2,
458
+ .hero h3,
459
+ .hero h4,
460
+ .hero h5,
461
+ .hero h6,
462
+ .footer h1,
463
+ .footer h2,
464
+ .footer h3,
465
+ .footer h4,
466
+ .footer h5,
467
+ .footer h6 {
468
+ color: var(--psdi-heading-color-inverse);
469
+ }
470
+
471
+ .secondary {
472
+ color: var(--ifm-font-color-secondary);
473
+ }
474
+
475
+ .secondary h1,
476
+ .secondary h2,
477
+ .secondary h3,
478
+ .secondary h4,
479
+ .secondary h5,
480
+ .secondary h6 {
481
+ color: var(--ifm-heading-color-secondary);
482
+ }
483
+
484
+ /* Link styling - to match main page, we make links bold and make underline
485
+ disappear when hovered over, and don't show the extra icon. */
486
+ a {
487
+ color : inherit;
488
+ font-weight : bold;
489
+ text-decoration: underline;
490
+ }
491
+
492
+ .content_knG7 a:hover,
493
+ a:hover {
494
+ text-decoration: none;
495
+ }
496
+
497
+ /* For links which contain longer text content, don't underline any text in paragraphs,
498
+ but do underline (and remove on hover) in the headings */
499
+ a:has(>h1),
500
+ a:has(>h2),
501
+ a:has(>h3),
502
+ a:has(>h4),
503
+ a:has(>h5),
504
+ a:has(>h6) {
505
+ text-decoration: none;
506
+ }
507
+
508
+ a h1,
509
+ a h2,
510
+ a h3,
511
+ a h4,
512
+ a h5,
513
+ a h6 {
514
+ text-decoration: underline;
515
+ }
516
+
517
+ a:hover h1,
518
+ a:hover h2,
519
+ a:hover h3,
520
+ a:hover h4,
521
+ a:hover h5,
522
+ a:hover h6 {
523
+ text-decoration: none;
524
+ }
525
+
526
+ /* Don't display the icons Docusaurus adds to links */
527
+ a svg {
528
+ display: none;
529
+ }
530
+
531
+ .navbar {
532
+ padding: 1rem 0;
533
+ }
534
+
535
+ .navbar__brand {
536
+ display : flex;
537
+ flex-direction: row;
538
+ align-items : center;
539
+ padding-right : 0 0.75rem;
540
+ }
541
+
542
+ @media (max-width: 700px) {
543
+ .navbar__brand {
544
+ flex-wrap: wrap;
545
+ }
546
+ }
547
+
548
+ .navbar__title h5 {
549
+ display: unset;
550
+ color : var(--ifm-heading-color);
551
+ margin : 0 0 0.5rem 0.5rem;
552
+ }
553
+
554
+ .navbar__logo img {
555
+ width : 100%;
556
+ min-width: 7.5rem;
557
+ max-width: 15rem;
558
+ }
559
+
560
+ #__docusaurus .navbar__logo img {
561
+ height : 2rem;
562
+ min-width: auto;
563
+ max-width: auto;
564
+ }
565
+
566
+ .footer {
567
+ background-color: var(--ifm-color-primary);
568
+ color : var(--ifm-hero-text-color);
569
+ padding : 0.5rem 2rem 0.5rem 2rem;
570
+ }
571
+
572
+ .footer .max-width-box {
573
+ display : flex;
574
+ flex-direction: column;
575
+ align-items : stretch;
576
+ text-align : left;
577
+ }
578
+
579
+ .footer .container-fluid {
580
+ padding: 0;
581
+ }
582
+
583
+ .footer .footer__bottom {
584
+ margin: 0;
585
+ }
586
+
587
+ .footer__links {
588
+ display : flex;
589
+ flex-direction : row;
590
+ justify-content: center;
591
+ align-items : flex-start;
592
+ margin : 0;
593
+ }
594
+
595
+ #footer__links__left {
596
+ min-width : 20rem;
597
+ flex : 1 1 60%;
598
+ display : grid;
599
+ grid-template-columns: 40% 60%;
600
+ grid-template-rows : 3rem 1rem auto 1rem;
601
+ margin-right : 0;
602
+ padding-right : 0;
603
+ }
604
+
605
+ #footer__links__right {
606
+ min-width : 20rem;
607
+ flex : 1 1 40%;
608
+ display : grid;
609
+ grid-template-columns: 50% 50%;
610
+ grid-template-rows : 3rem 1rem auto 1rem;
611
+ margin-left : 0;
612
+ padding-left : 0;
613
+ }
614
+
615
+ .footer__title,
616
+ .footer__col,
617
+ .footer__bottom {
618
+ margin: 0 1rem;
619
+ }
620
+
621
+ .footer__title {
622
+ color : var(--psdi-heading-color-inverse);
623
+ font-weight : bold;
624
+ display : flex;
625
+ flex-direction : column;
626
+ justify-content: flex-end;
627
+ }
628
+
629
+ .footer__title h6 {
630
+ padding: 0;
631
+ margin : 0;
632
+ }
633
+
634
+ .footer__hline,
635
+ .footer__hline hr {
636
+ grid-column : 1 / 6;
637
+ padding-left : 0;
638
+ padding-right: 0;
639
+ margin : 0;
640
+ }
641
+
642
+ .footer__hline hr {
643
+ margin: 0.5rem 0;
644
+ height: 2px;
645
+ }
646
+
647
+ .max-width-box .footer__col {
648
+ margin : 0 1rem;
649
+ padding: 0;
650
+ }
651
+
652
+ .footer__col:has(img) {
653
+ padding-top: 0rem;
654
+ }
655
+
656
+ .footer__items li {
657
+ padding: 0.25rem 0;
658
+ }
659
+
660
+ .footer img {
661
+ max-height: 4rem;
662
+ max-width : 100%;
663
+ }
664
+
665
+ #footer-icon-list {
666
+ margin-top : 0.5rem;
667
+ display : flex;
668
+ flex-direction : row;
669
+ justify-content: left;
670
+ height : 1.5rem;
671
+ gap : 1rem;
672
+ flex-wrap : wrap;
673
+ }
674
+
675
+ #footer-icon-list img {
676
+ height: 1.5rem;
677
+ }
678
+
679
+ .footer__hline.big-screen-only {
680
+ display : block;
681
+ margin-top: -1rem;
682
+ }
683
+
684
+ .footer__hline.small-screen-only {
685
+ display: none;
686
+ }
687
+
688
+ @media (max-width: 700px) {
689
+ .footer__links {
690
+ flex-direction: column;
691
+ align-items : stretch;
692
+ }
693
+
694
+ .footer__hline.big-screen-only {
695
+ display: none;
696
+ }
697
+
698
+ .footer__hline.small-screen-only {
699
+ display: block;
700
+ }
701
+ }
702
+
703
+ .footer__copyright__text {
704
+ padding: 0;
705
+ }