need4deed-sdk 0.0.13 → 0.0.14

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.
@@ -1,5 +1,6 @@
1
1
  export * from "./common";
2
2
  export * from "./event";
3
+ export * from "./language";
3
4
  export * from "./location";
4
5
  export * from "./new_api";
5
6
  export * from "./opportunity";
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./common"), exports);
18
18
  __exportStar(require("./event"), exports);
19
+ __exportStar(require("./language"), exports);
19
20
  __exportStar(require("./location"), exports);
20
21
  __exportStar(require("./new_api"), exports);
21
22
  __exportStar(require("./opportunity"), exports);
@@ -0,0 +1,5 @@
1
+ import { LangProficiency } from "../core";
2
+ export interface ApiLanguage {
3
+ title: string;
4
+ proficiency: LangProficiency;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,6 @@
1
- import { DocumentStatusType } from "../core";
1
+ import { DocumentStatusType, Id } from "../core";
2
2
  import { Option, OptionId } from "./common";
3
+ import { ApiLanguage } from "./language";
3
4
  import { Address } from "./location";
4
5
  import { Availability, TimedText } from "./time";
5
6
  export interface Volunteer {
@@ -15,16 +16,30 @@ export interface Volunteer {
15
16
  preferred_berlin_locations: OptionId[];
16
17
  activities: OptionId[];
17
18
  skills: OptionId[];
18
- native_languages: OptionId[];
19
- fluent_languages: OptionId[];
20
- intermediate_languages: OptionId[];
19
+ nativeLanguages: OptionId[];
20
+ fluentLanguages: OptionId[];
21
+ intermediateLanguages: OptionId[];
22
+ comments: string;
23
+ }
24
+ export interface VolunteerFormData {
25
+ opportunityId?: Id | undefined;
26
+ fullName: string;
27
+ phone: string;
28
+ email: string;
29
+ postcode: number;
30
+ goodConductCertificate: DocumentStatusType;
31
+ measlesVaccination: DocumentStatusType;
32
+ schedule: [number, OptionId][];
33
+ districts: OptionId[];
34
+ languages: ApiLanguage[];
35
+ activities: OptionId[];
36
+ skills: OptionId[];
37
+ leadFrom: OptionId[];
21
38
  comments: string;
22
39
  }
23
40
  export interface ApiVolunteerGetList {
24
41
  name: string;
25
- nativeLanguages: string[];
26
- fluentLanguages: string[];
27
- intermediateLanguages: string[];
42
+ languages: ApiLanguage[];
28
43
  availability: Availability[];
29
44
  activities: string[];
30
45
  skills: string[];
@@ -28,4 +28,5 @@ export declare enum DocumentStatusType {
28
28
  APPLIED_SELF = "applied_self",
29
29
  APPLIED_N4D = "applied_n4d"
30
30
  }
31
+ export type Id = string | number;
31
32
  export type SomeType = "some" | "type";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",
@@ -1,896 +0,0 @@
1
- body {
2
- font-family: "Figtree", sans-serif;
3
- width: 100%;
4
- margin: 0;
5
- }
6
-
7
- body * {
8
- outline: solid red 1px;
9
- }
10
-
11
- html {
12
- scroll-behavior: smooth;
13
- }
14
-
15
- .gradient-overlay {
16
- position: absolute;
17
- top: 0;
18
- left: 0;
19
- width: 100%;
20
- height: 100%;
21
- pointer-events: none;
22
- }
23
-
24
- .image-filter-gradient-blue {
25
- background: linear-gradient(
26
- 180deg,
27
- var(--color-midnight-misty) 11.02%,
28
- var(--color-barely-blue) 89.66%
29
- );
30
- }
31
-
32
- :root {
33
- /* color */
34
- --color-midnight: rgba(26, 38, 132, 1);
35
- --color-midnight-light: rgba(58, 72, 178, 1);
36
- --color-midnight-misty: rgba(44, 47, 153, 0.6);
37
- --color-midnight-bright: rgba(75, 91, 212, 1);
38
- --color-barely-blue: rgba(73, 79, 255, 0.05);
39
- --color-aubergine: rgba(95, 38, 77, 1);
40
- --color-aubergine-light: rgba(133, 63, 110, 1);
41
- --color-orchid: rgba(247, 205, 255, 1);
42
- --color-orchid-dark: rgba(242, 177, 255, 1);
43
- --color-orchid-light: rgba(251, 226, 255, 1);
44
- --color-orchid-subtle: rgba(254, 244, 255, 1);
45
- --color-sand: rgba(242, 226, 211, 1);
46
- --color-sand-dark: rgba(184, 172, 137, 1);
47
- --color-magnolia: rgba(246, 238, 231, 1);
48
- --color-papaya: rgba(255, 125, 104, 1);
49
- --color-white: rgba(255, 255, 255, 1);
50
- --color-black: rgba(0, 0, 0, 1);
51
- --color-dimmed-background: rgba(0, 0, 0, 0.4);
52
- --color-neutral-900: #fff;
53
- --color-neutral-800: #eee;
54
- --color-neutral-700: #ddd;
55
- --color-neutral-600: #ccc;
56
- --color-neutral-500: #bbb;
57
- --color-neutral-400: #aaa;
58
- --color-neutral-300: #888;
59
- --color-neutral-200: #444;
60
- --color-neutral-100: #000;
61
-
62
- /* text */
63
- --text-h2-font-weight: 600;
64
- --text-h2-font-size: 32px;
65
- --text-h2-line-height: 38px;
66
-
67
- --text-h3-font-weight: 600;
68
- --text-h3-font-size: 24px;
69
- --text-h3-line-height: 30px;
70
- --text-h3-letter-spacing: 0.1px;
71
-
72
- --text-p-font-weight: 300;
73
-
74
- /* icon */
75
- --icon-color: var(--color-papaya);
76
-
77
- /* card */
78
- --card-border-radius: 24px;
79
-
80
- /* text-activity-tag */
81
- --text-activity-tag-font-weight: 600;
82
- --text-activity-tag-font-size: 14px;
83
- --text-activity-tag-line-height: 17px;
84
- --text-activity-tag-text-align: center;
85
-
86
- /* activities */
87
- --activities-container-gap: 8px;
88
- --activity-tag-border-radius: 4px;
89
- --activity-tag-padding: 6px 8px;
90
-
91
- /*homepage volunteering opportunity */
92
- --homepage-volunteering-opportunity-detail-section-gap: 4px;
93
- --homepage-volunteering-opportunity-detail-header-gap: 8px;
94
-
95
- /* paginated cards container */
96
- --paginated-cards-container-gap: 20px;
97
-
98
- /* testimonials */
99
- --homepage-testimonials-profile-width: 60px;
100
- --homepage-testimonials-profile-height: 60px;
101
- --homepage-testimonials-profile-gap: 16px;
102
-
103
- /* layout-static-page */
104
- --layout-static-page-background-default: linear-gradient(
105
- 180deg,
106
- var(--color-magnolia)-5.53%,
107
- var(--color-orchid-dark) 100%
108
- );
109
-
110
- /* button */
111
- --button-gap: 12px;
112
-
113
- /* checkbox */
114
- --checkbox-container-gap: 8px;
115
- --checkbox-label-font-size: 18px;
116
- --checkbox-label-line-height: 32px;
117
- --checkbox-label-font-weight-selected: 400;
118
- --checkbox-label-font-weight-not-selected: 300;
119
- }
120
-
121
- .with-linebreaks {
122
- white-space: pre-wrap;
123
- }
124
-
125
- @media (min-width: 360px) {
126
- :root {
127
- --max-width-section: 360px;
128
-
129
- --text-p-font-size: 18px;
130
- --text-p-line-height: 21px;
131
- --text-p-letter-spacing: 0;
132
-
133
- --text-h1-font-weight: 700;
134
- --text-h1-font-size: 28px;
135
- --text-h1-line-height: 28px;
136
-
137
- --text-h4-font-weight: 500;
138
- --text-h4-font-size: 18px;
139
- --text-h4-line-height: 18px;
140
- --text-h4-letter-spacing: 0.1;
141
-
142
- --icon-size: 40px;
143
-
144
- --text-button-font-size: 18px;
145
-
146
- --homepage-section-container-padding: 48px 20px;
147
- --homepage-section-container-gap: 16px;
148
- --homepage-section-container-footer-justify-content: center;
149
-
150
- --homepage-volunteering-categories-header-gap: 12px;
151
- --homepage-volunteering-category-card-width: 320px;
152
- --homepage-volunteering-category-card-height: 328px;
153
- --homepage-volunteering-category-card-padding-top: 24px;
154
- --homepage-volunteering-category-card-padding-right: 24px;
155
- --homepage-volunteering-category-card-padding-bottom: 48px;
156
- --homepage-volunteering-category-card-padding-left: 24px;
157
- --homepage-volunteering-category-card-gap: 16px;
158
-
159
- --homepage-volunteering-opportunities-grid-template-columns: 1fr;
160
- --homepage-volunteering-opportunities-grid-template-rows: repeat(2, auto);
161
- --homepage-volunteering-opportunities-grid-gap: 16px;
162
- --homepage-volunteering-opportunity-card-width: 320px;
163
- --homepage-volunteering-opportunity-card-padding-top: 24px;
164
- --homepage-volunteering-opportunity-card-padding-right: 24px;
165
- --homepage-volunteering-opportunity-card-padding-bottom: 40px;
166
- --homepage-volunteering-opportunity-card-padding-left: 24px;
167
- --homepage-volunteering-opportunity-card-gap: 16px;
168
- --homepage-volunteering-opportunity-details-gap: 12px;
169
- --homepage-volunteering-opportunity-details-languages-gap: 4px;
170
- --homepage-volunteering-opportunity-details-languages-detail-gap: 4px;
171
-
172
- --page-opportunity-grid-max-width: 360px;
173
- --page-opportunity-grid-template-columns: 1fr;
174
- --page-opportunity-card-width: 312px;
175
- --page-opportunity-card-height: auto; /*421px;*/
176
- --page-opportunity-popup-card-width: 328px;
177
- --page-opportunity-popup-card-height: auto;
178
- --page-opportunity-popup-card-x-margins: 36px;
179
- --page-opportunity-popup-ctas-gap: 24px;
180
- --page-opportunity-popup-ctas-margin-top: 24px;
181
-
182
- --homepage-testimonials-header-gap: 16px;
183
- --homepage-testimonial-card-width: 320px;
184
- --homepage-testimonial-card-padding-top: 24px;
185
- --homepage-testimonial-card-padding-right: 24px;
186
- --homepage-testimonial-card-padding-bottom: 32px;
187
- --homepage-testimonial-card-padding-left: 24px;
188
- --homepage-testimonial-card-gap: 14px;
189
- --homepage-testimonial-card-text-p-font-size: 16px;
190
- --homepage-testimonial-card-text-p-line-height: 22px;
191
-
192
- --homepage-hero-section-container-height: 760px;
193
- --homepage-hero-section-container-gap: 80px;
194
- --homepage-hero-section-logo-height: 152px;
195
- --homepage-hero-section-logo-width: 280px;
196
- --homepage-hero-section-header-height: 202px;
197
- --homepage-hero-section-header-menu-items-width: 100%;
198
- --homepage-hero-section-header-menu-items-gap: 24px;
199
- --homepage-hero-section-header-menu-items-flex-direction: column;
200
- --homepage-hero-section-header-menu-items-padding-top: 24px;
201
- --homepage-hero-section-header-menu-items-padding-bottom: 32px;
202
- --homepage-hero-section-header-menu-items-padding-right: 20px;
203
- --homepage-hero-section-header-menu-items-padding-left: 20px;
204
- --homepage-hero-section-header-menu-items-border-bottom-right-radius: 10px;
205
- --homepage-hero-section-header-menu-items-border-bottom-left-radius: 10px;
206
- --homepage-hero-section-header-menu-item-fontSize: 16px;
207
- --homepage-hero-section-header-menu-item-fontWeight: 600;
208
- --homepage-hero-section-header-menu-item-letterSpacing: 0px;
209
- --homepage-hero-section-header-menu-item-lineheight: 16px;
210
- --homepage-hero-section-language-option-button-radius: 4px;
211
- --homepage-hero-section-language-option-button-text-color: var(
212
- --color-midnight-light
213
- );
214
- --homepage-hero-section-content-container-width: 100%;
215
- --homepage-hero-section-content-container-height: 440px;
216
- --homepage-hero-section-content-hero-text-container-gap: 20px;
217
- --homepage-hero-section-content-hero-text-color: var(--color-white);
218
- --homepage-hero-section-content-hero-text-fontSize: 32px;
219
- --homepage-hero-section-content-hero-text-fontWeight: 600;
220
- --homepage-hero-section-content-hero-text-letterSpacing: 0.1px;
221
- --homepage-hero-section-content-hero-text-lineheight: 36px;
222
- --homepage-hero-section-content-hero-supporting-text-fontSize: 20px;
223
- --homepage-hero-section-content-hero-supporting-text-fontWeight: 400;
224
- --homepage-hero-section-content-hero-supporting-text-letterSpacing: 0.25px;
225
- --homepage-hero-section-content-hero-supporting-text-lineheight: 20px;
226
- --homepage-hero-section-content-hero-button-container-gap: 16px;
227
- --homepage-hero-section-content-hero-button-container-flex-direction: column;
228
-
229
- --homepage-footer-partners-section-container-height: auto;
230
- --homepage-footer-partners-section-container-padding: 32px 20px;
231
- --homepage-footer-partners-section-container-gap: 64px;
232
- --homepage-footer-partners-section-partners-container-height: 443px;
233
- --homepage-footer-partners-section-partners-container-flex-direction: column;
234
- --homepage-footer-partners-section-partners-container-justify-content: center;
235
- --homepage-footer-partners-section-partners-container-gap: 48px;
236
- --homepage-footer-partners-section-partners-frame-container-gap: 75px;
237
- --homepage-footer-partners-section-partners-club-dialog-div-gap: 8px;
238
- --homepage-footer-partners-section-logo-club-dialog-width: 200px;
239
- --homepage-footer-partners-section-logo-club-dialog-height: 36px;
240
- --homepage-footer-partners-section-logo-berlin-width: 112;
241
- --homepage-footer-partners-section-logo-berlin-height: 120;
242
- --homepage-footer-partners-section-logo-eu-width: 130px;
243
- --homepage-footer-partners-section-logo-eu-height: 120px;
244
- --homepage-footer-partners-section-logo-SchönebergHilft-width: 100px;
245
- --homepage-footer-partners-section-logo-SchönebergHilft-height: 100px;
246
- --homepage-footer-partners-section-logo-n4d-width: 68px;
247
- --homepage-footer-partners-section-logo-n4d-height: 90px;
248
- --homepage-footer-partners-section-footer-container-height: 364px;
249
- --homepage-footer-partners-section-footer-container-flex-direction: column;
250
- --homepage-footer-partners-section-footer-container-justify-content: space-between;
251
- --homepage-footer-partners-section-contact-socials-container-flex-direction: column;
252
- --homepage-footer-partners-section-contact-socials-container-justify-content: unset;
253
- --homepage-footer-partners-section-contact-socials-container-gap: 32px;
254
- --homepage-footer-partners-section-contact-container-gap: 10px;
255
- --homepage-footer-partners-section-socials-container-gap: 20px;
256
- --homepage-footer-partners-section-footer-links-container-width: 310px;
257
- --homepage-footer-partners-section-footer-frame-container-gap: 16px;
258
- --homepage-footer-partners-section-p-fontWeight-large: 500;
259
- --homepage-footer-partners-section-p-fontWeight-small: 400;
260
- --homepage-footer-partners-section-p-fontSize: 16px;
261
-
262
- --homepage-rac-section-container-height: 720px;
263
- --homepage-rac-section-content-container-gap: 80px;
264
- --homepage-rac-section-content-headLine-container-gap: 16px;
265
- --homepage-rac-section-content-headLine2-fontWeight: 700;
266
- --homepage-rac-section-content-headLine2-fontSize: 40px;
267
- --homepage-rac-section-content-headLine2-lineheight: 40px;
268
- --homepage-rac-section-content-headLine2-letterSpacing: 0.1px;
269
- --homepage-rac-section-content-buttons-container-flex-direction: column;
270
- --homepage-rac-section-content-buttons-container-gap: 16px;
271
-
272
- --homepage-process-section-gap: 40px;
273
- --homepage-process-section-header-gap: 24px;
274
- --homepage-process-section-video-height: 208px;
275
- --homepage-process-section-video-width: 360px;
276
- --homepage-process-section-video-border-radius: 8px;
277
- --homepage-process-section-video-margin-left: -20px;
278
- --homepage-process-section-card-flex-direction: column;
279
- --homepage-process-section-card-width: 320px;
280
- --homepage-process-section-card-height: 330px;
281
- --homepage-process-section-card-border-radius: 24px;
282
- --homepage-process-section-card-padding: 20px 28px 32px 20px;
283
- --homepage-process-section-card-gap: 24px;
284
- --homepage-process-section-card-header-flex-direction: row;
285
- --homepage-process-section-card-header-gap: 20px;
286
- --homepage-process-section-card-week-div-padding: 8px 12px 6px 12px;
287
- --homepage-process-section-card-week-div-radius: 4px;
288
- --homepage-process-section-card-info-div-gap: 16px;
289
- --homepage-process-section-card-info-headline-div-gap: 12px;
290
- --homepage-process-section-card-info-bullet-div-padding-left: 8px;
291
- --homepage-process-section-card-info-text-div-gap: 24px;
292
- --homepage-process-section-card-info-text-fontWeight: 400;
293
- --homepage-process-section-card-info-text-fontSize: 16px;
294
- --homepage-process-section-card-info-text-lineheight: 20px;
295
- --homepage-process-section-card-info-text-letterSpacing: 0px;
296
- --homepage-process-section-card-icon-size: 40px;
297
- --homepage-process-section-card-last-step-width: 320px;
298
-
299
- --homepage-events-section-container-height: 455px;
300
- --homepage-events-section-content-container-gap: 32px;
301
- --homepage-events-section-event-container-flex-direction: column;
302
- --homepage-events-section-event-container-gap: 32px;
303
- --homepage-events-section-event-card-gap: 20px;
304
- --homepage-events-section-event-card-headline-gap: 16px;
305
- --homepage-events-section-event-card-event-title-tag-padding: 8px 12px;
306
- --homepage-events-section-event-card-event-title-tag-border-radius: 8px;
307
- --homepage-events-section-button-container-justify-content: center;
308
-
309
- --button-height: 64px;
310
- --button-width: auto;
311
- --button-padding: 12px 24px;
312
- --button-border-radius: 125px;
313
- --button-text-font-weight: 500;
314
- --button-text-font-size: 18px;
315
- --button-text-line-height: 25px;
316
- --button-text-letter-spacing: 0.13px;
317
- --button-text-text-align: center;
318
-
319
- --numbering-div-width: 32px;
320
- --numbering-div-height: 32px;
321
- --numbering-div-border-radius: 16.57px;
322
-
323
- --layout-static-page-n4d-logo-width: 144;
324
- --layout-static-page-n4d-logo-height: 24;
325
- --layout-static-page-header-height: 64px;
326
- --layout-static-page-header-content-bottom-padding: 100px;
327
- --layout-static-page-header-padding: 10px 18px;
328
-
329
- --opportunities-container-width: fit-content;
330
- --opportunities-container-min-height: none;
331
- --opportunities-container-gap: 24px;
332
- --opportunities-container-padding: 12px;
333
- --opportunities-container-padding-inline: 16px;
334
- --opportunities-header-title-tabs-gap: 24px;
335
- --opportunities-header-tabs-searchbar-gap: 12px;
336
- --opportunities-header-tabs-section-width: -webkit-fill-available;
337
- --opportunities-header-tabs-gap: 16px;
338
- --opportunities-header-tabs-border-bottom: 4px;
339
- --opportunities-header-tabs-padding-bottom: 4px;
340
- --opportunities-header-result-gap: 10px;
341
- --opportunities-header-result-padding: 10px;
342
- --opportunities-header-searchbar-flex-direction: column;
343
- --opportunities-header-searchbar-width: -webkit-fill-available;
344
- --opportunities-map-view-container-height: 200px;
345
- --opportunities-cards-container-justify-content: center;
346
- --opportunities-filters-button-height: 48px;
347
- --opportunities-filters-button-width: 48px;
348
- --opportunities-filters-button-icon-size: 32px;
349
- --opportunities-filters-container-width: auto;
350
- --opportunities-filters-container-border-bottom-radius: 40px;
351
- --opportunities-filters-close-filter-height: 64px;
352
- --opportunities-filters-close-filter-gap: 12px;
353
- --opportunities-filters-close-filter-padding: 16px 0px 16px 32px;
354
- --opportunities-filters-content-container-width: auto;
355
- --opportunities-filters-content-container-gap: 16px;
356
- --opportunities-filters-content-container-padding: 20px 20px 20px 20px;
357
- --opportunities-filters-content-filter-container-gap: 16px;
358
- --opportunities-filters-content-accordion-options-gap: 6px;
359
- --opportunities-filters-content-accordion-options-max-height: 500px;
360
- --opportunities-filters-content-accordion-options-checkbox-height: 18px;
361
- --opportunities-filters-content-accordion-group-options-checkbox-height: 16px;
362
- --opportunities-filters-content-accordion-group-options-checkbox-labelFontSize: 14px;
363
- --opportunities-filters-content-accordion-header-border-top: 1px;
364
- --opportunities-filters-content-accordion-header-padding-top: 16px;
365
- --opportunities-filters-clear-all-button-padding-bottom: 20px;
366
- --opportunities-filters-clear-all-button-icon-size: 24px;
367
- --opportunities-filters-clear-all-button-height: 64px;
368
- --opportunities-filters-clear-all-button-text-font-size: 20px;
369
- --opportunities-filters-description-font-size: 14px;
370
- --opportunities-filters-description-font-weight: 400;
371
-
372
- --search-container-height: 64px;
373
- --search-container-border-radius: 40px;
374
- --search-container-padding: 0 32px;
375
- --search-input-font-size: 16px;
376
-
377
- --paginated-grid-container-gap: 24px;
378
- --paginated-grid-pagination-number-width: 36px;
379
- --paginated-grid-pagination-number-height: 44px;
380
- --paginated-grid-pagination-number-border-radius: 6px;
381
- }
382
- }
383
-
384
- @media (min-width: 768px) {
385
- :root {
386
- --max-width-section: 768px;
387
-
388
- --icon-size: 48px;
389
-
390
- --text-p-font-size: 20px;
391
- --text-p-line-height: 24px;
392
- --text-p-letter-spacing: 0.1px;
393
-
394
- --text-h1-font-weight: 700;
395
- --text-h1-font-size: 32px;
396
- --text-h1-line-height: 32px;
397
- --text-h1-letter-spacing: 0.1px;
398
-
399
- --text-h4-font-weight: 600;
400
- --text-h4-font-size: 20px;
401
- --text-h4-line-height: 20px;
402
- --text-h4-letter-spacing: 0.1;
403
-
404
- --text-button-font-size: 24px;
405
-
406
- --homepage-section-container-padding: 64px 40px;
407
- --homepage-section-container-gap: 48px;
408
- --homepage-section-container-footer-justify-content: flex-end;
409
-
410
- --homepage-volunteering-categories-grid-template-columns: repeat(2, 1fr);
411
- --homepage-volunteering-categories-grid-template-rows: repeat(3, auto);
412
- --homepage-volunteering-categories-grid-gap: 24px;
413
- --homepage-volunteering-categories-header-gap: 16px;
414
- --homepage-volunteering-category-card-width: 332px;
415
- --homepage-volunteering-category-card-height: 380px;
416
- --homepage-volunteering-category-card-padding-top: 28px;
417
- --homepage-volunteering-category-card-padding-right: 28px;
418
- --homepage-volunteering-category-card-padding-bottom: 48px;
419
- --homepage-volunteering-category-card-padding-left: 28px;
420
- --homepage-volunteering-category-card-gap: 20px;
421
-
422
- --homepage-volunteering-opportunities-grid-template-columns: repeat(2, 1fr);
423
- --homepage-volunteering-opportunities-grid-template-rows: auto;
424
- --homepage-volunteering-opportunities-grid-gap: 24px;
425
- --homepage-volunteering-opportunity-card-width: 332px;
426
- --homepage-volunteering-opportunity-card-padding-top: 28px;
427
- --homepage-volunteering-opportunity-card-padding-right: 28px;
428
- --homepage-volunteering-opportunity-card-padding-bottom: 48px;
429
- --homepage-volunteering-opportunity-card-padding-left: 28px;
430
- --homepage-volunteering-opportunity-card-gap: 20px;
431
- --homepage-volunteering-opportunity-details-gap: 16px;
432
-
433
- --page-opportunity-grid-max-width: 768px;
434
- --page-opportunity-grid-template-columns: repeat(2, 1fr);
435
- --page-opportunity-card-width: 332px;
436
- --page-opportunity-card-height: auto; /*472px;*/
437
- --page-opportunity-popup-card-width: 688px;
438
- --page-opportunity-popup-card-height: auto;
439
- --page-opportunity-popup-card-x-margins: 36px;
440
- --page-opportunity-popup-ctas-gap: 24px;
441
- --page-opportunity-popup-ctas-margin-top: 24px;
442
-
443
- --homepage-testimonials-header-gap: 24px;
444
- --homepage-testimonial-card-width: 328px;
445
- --homepage-testimonial-card-padding-top: 28px;
446
- --homepage-testimonial-card-padding-right: 28px;
447
- --homepage-testimonial-card-padding-bottom: 40px;
448
- --homepage-testimonial-card-padding-left: 28px;
449
- --homepage-testimonial-card-gap: 14px;
450
- --homepage-testimonial-card-text-p-font-size: 18px;
451
- --homepage-testimonial-card-text-p-line-height: 24px;
452
-
453
- --homepage-hero-section-container-height: 844px;
454
- --homepage-hero-section-container-gap: 80px;
455
- --homepage-hero-section-logo-height: 200px;
456
- --homepage-hero-section-logo-width: 370px;
457
- --homepage-hero-section-header-height: 202px;
458
- --homepage-hero-section-header-menu-items-width: 200px;
459
- --homepage-hero-section-header-menu-items-gap: 24px;
460
- --homepage-hero-section-header-menu-items-flex-direction: column;
461
- --homepage-hero-section-header-menu-item-fontSize: 16px;
462
- --homepage-hero-section-header-menu-item-fontWeight: 600;
463
- --homepage-hero-section-header-menu-item-letterSpacing: 0px;
464
- --homepage-hero-section-header-menu-item-lineheight: 16px;
465
- --homepage-hero-section-language-option-button-radius: 4px;
466
- --homepage-hero-section-language-option-button-text-color: var(
467
- --color-aubergine-light
468
- );
469
- --homepage-hero-section-content-container-width: 100%;
470
- --homepage-hero-section-content-container-height: 440px;
471
- --homepage-hero-section-content-hero-text-container-gap: 20px;
472
- --homepage-hero-section-content-hero-text-color: var(--color-white);
473
- --homepage-hero-section-content-hero-text-fontSize: 48px;
474
- --homepage-hero-section-content-hero-text-fontWeight: 600;
475
- --homepage-hero-section-content-hero-text-letterSpacing: 0.1px;
476
- --homepage-hero-section-content-hero-text-lineheight: 48px;
477
- --homepage-hero-section-content-hero-supporting-text-fontSize: 24px;
478
- --homepage-hero-section-content-hero-supporting-text-fontWeight: 500;
479
- --homepage-hero-section-content-hero-supporting-text-letterSpacing: 0.25px;
480
- --homepage-hero-section-content-hero-supporting-text-lineheight: 24px;
481
- --homepage-hero-section-content-hero-button-container-gap: 24px;
482
- --homepage-hero-section-content-hero-button-container-flex-direction: row;
483
-
484
- --homepage-footer-partners-section-container-height: 800px;
485
- --homepage-footer-partners-section-container-padding: 48px;
486
- --homepage-footer-partners-section-container-gap: 96px;
487
- --homepage-footer-partners-section-partners-container-height: 504px;
488
- --homepage-footer-partners-section-partners-container-flex-direction: column;
489
- --homepage-footer-partners-section-partners-container-justify-content: center;
490
- --homepage-footer-partners-section-partners-frame-container-height: 180px;
491
- --homepage-footer-partners-section-partners-frame-container-gap-1: 160px;
492
- --homepage-footer-partners-section-partners-frame-container-gap-2: 120px;
493
- --homepage-footer-partners-section-partners-club-dialog-div-gap: 16px;
494
- --homepage-footer-partners-section-logo-club-dialog-width: 16px;
495
- --homepage-footer-partners-section-logo-club-dialog-height: 16px;
496
- --homepage-footer-partners-section-logo-club-dialog-width: 316;
497
- --homepage-footer-partners-section-logo-club-dialog-height: 58;
498
- --homepage-footer-partners-section-logo-berlin-width: 170;
499
- --homepage-footer-partners-section-logo-berlin-height: 180;
500
- --homepage-footer-partners-section-logo-eu-width: 194px;
501
- --homepage-footer-partners-section-logo-eu-height: 180px;
502
- --homepage-footer-partners-section-logo-SchönebergHilft-width: 150px;
503
- --homepage-footer-partners-section-logo-SchönebergHilft-height: 150px;
504
- --homepage-footer-partners-section-logo-n4d-width: 68px;
505
- --homepage-footer-partners-section-logo-n4d-height: 90px;
506
- --homepage-footer-partners-section-footer-container-height: 200px;
507
- --homepage-footer-partners-section-footer-container-flex-direction: row;
508
- --homepage-footer-partners-section-footer-container-justify-content: space-between;
509
- --homepage-footer-partners-section-contact-socials-container-flex-direction: row;
510
- --homepage-footer-partners-section-contact-socials-container-justify-content: space-between;
511
- --homepage-footer-partners-section-contact-socials-container-gap: 110px;
512
- --homepage-footer-partners-section-contact-container-gap: 10px;
513
- --homepage-footer-partners-section-socials-container-gap: 20px;
514
- --homepage-footer-partners-section-footer-links-container-gap: 40px;
515
- --homepage-footer-partners-section-footer-links-container-width: 500px;
516
- --homepage-footer-partners-section-footer-frame-container-gap: 20px;
517
- --homepage-footer-partners-section-p-fontWeight-large: 500;
518
- --homepage-footer-partners-section-p-fontWeight-small: 400;
519
- --homepage-footer-partners-section-p-fontSize: 18px;
520
-
521
- --homepage-rac-section-container-height: 720px;
522
- --homepage-rac-section-content-container-gap: 80px;
523
- --homepage-rac-section-content-headLine-container-gap: 24px;
524
- --homepage-rac-section-content-headLine2-fontWeight: 700;
525
- --homepage-rac-section-content-headLine2-fontSize: 48px;
526
- --homepage-rac-section-content-headLine2-lineheight: 48px;
527
- --homepage-rac-section-content-headLine2-letterSpacing: 0.1px;
528
- --homepage-rac-section-content-buttons-container-flex-direction: row;
529
- --homepage-rac-section-content-buttons-container-gap: 16px;
530
-
531
- --homepage-process-section-gap: 80px;
532
- --homepage-process-section-header-gap: 40px;
533
- --homepage-process-section-video-height: 378px;
534
- --homepage-process-section-video-width: 672px;
535
- --homepage-process-section-video-border-radius: 8px;
536
- --homepage-process-section-video-margin-left: 0;
537
- --homepage-process-section-card-flex-direction: column;
538
- --homepage-process-section-card-width: 328px;
539
- --homepage-process-section-card-height: 330px;
540
- --homepage-process-section-card-border-radius: 24px;
541
- --homepage-process-section-card-padding: 20px 28px 32px 20px;
542
- --homepage-process-section-card-gap: 24px;
543
- --homepage-process-section-card-header-flex-direction: row;
544
- --homepage-process-section-card-header-gap: 20px;
545
- --homepage-process-section-card-week-div-padding: 8px 12px 6px 12px;
546
- --homepage-process-section-card-week-div-radius: 4px;
547
- --homepage-process-section-card-info-div-gap: 16px;
548
- --homepage-process-section-card-info-headline-div-gap: 20px;
549
- --homepage-process-section-card-info-bullet-div-padding-left: 8px;
550
- --homepage-process-section-card-info-text-div-gap: 28px;
551
- --homepage-process-section-card-info-text-fontWeight: 400;
552
- --homepage-process-section-card-info-text-fontSize: 16px;
553
- --homepage-process-section-card-info-text-lineheight: 20px;
554
- --homepage-process-section-card-info-text-letterSpacing: 0px;
555
- --homepage-process-section-card-icon-size: 40px;
556
- --homepage-process-section-card-last-step-width: 328px;
557
-
558
- --homepage-events-section-container-height: 455px;
559
- --homepage-events-section-content-container-gap: 48px;
560
- --homepage-events-section-event-container-flex-direction: column;
561
- --homepage-events-section-event-container-gap: 48px;
562
- --homepage-events-section-event-card-gap: 20px;
563
- --homepage-events-section-event-card-headline-gap: 16px;
564
- --homepage-events-section-event-card-event-title-tag-padding: 8px 12px;
565
- --homepage-events-section-event-card-event-title-tag-border-radius: 8px;
566
- --homepage-events-section-button-container-justify-content: end;
567
-
568
- --button-height: 72px;
569
- --button-width: fit-content;
570
- --button-padding: 16px 36px;
571
- --button-border-radius: 125px;
572
- --button-text-font-weight: 500;
573
- --button-text-font-size: 24px;
574
- --button-text-line-height: 25px;
575
- --button-text-letter-spacing: 0.13px;
576
- --button-text-text-align: center;
577
-
578
- --paginated-cards-visible-cards-container-gap: 20px;
579
-
580
- --numbering-div-width: 32px;
581
- --numbering-div-height: 32px;
582
- --numbering-div-border-radius: 16.57px;
583
-
584
- --layout-static-page-n4d-logo-width: 230;
585
- --layout-static-page-n4d-logo-height: 32;
586
- --layout-static-page-header-height: 76px;
587
- --layout-static-page-header-padding: 20px 36px;
588
- --layout-static-page-header-content-bottom-padding: 100px;
589
-
590
- --opportunities-container-width: 720px;
591
- --opportunities-container-min-height: 1700px;
592
- --opportunities-container-gap: 40px;
593
- --opportunities-container-padding: none;
594
- --opportunities-container-padding-inline: 16px;
595
- --opportunities-header-title-tabs-gap: 27px;
596
- --opportunities-header-tabs-searchbar-gap: 20px;
597
- --opportunities-header-tabs-section-width: 688px;
598
- --opportunities-header-tabs-gap: 16px;
599
- --opportunities-header-tabs-border-bottom: 4px;
600
- --opportunities-header-tabs-padding-bottom: 4px;
601
- --opportunities-header-result-gap: 10px;
602
- --opportunities-header-result-padding: 10px;
603
- --opportunities-header-searchbar-width: 466px;
604
- --opportunities-header-searchbar-flex-direction: row;
605
- --opportunities-map-view-container-height: 300px;
606
- --opportunities-cards-container-justify-content: center;
607
- --opportunities-filters-button-height: 64px;
608
- --opportunities-filters-button-icon-size: 32px;
609
- --opportunities-filters-container-width: auto;
610
- --opportunities-filters-container-border-bottom-radius: 40px;
611
- --opportunities-filters-close-filter-height: 64px;
612
- --opportunities-filters-close-filter-gap: 12px;
613
- --opportunities-filters-close-filter-padding: 16px 0px 16px 32px;
614
- --opportunities-filters-content-container-width: auto;
615
- --opportunities-filters-content-container-gap: 16px;
616
- --opportunities-filters-content-container-padding: 40px 40px 40px 32px;
617
- --opportunities-filters-content-filter-container-gap: 16px;
618
- --opportunities-filters-content-accordion-options-gap: 8px;
619
- --opportunities-filters-content-accordion-options-max-height: 500px;
620
- --opportunities-filters-content-accordion-options-checkbox-height: 18px;
621
- --opportunities-filters-content-accordion-group-options-checkbox-height: 16px;
622
- --opportunities-filters-content-accordion-group-options-checkbox-labelFontSize: 14px;
623
- --opportunities-filters-content-accordion-header-border-top: 1px;
624
- --opportunities-filters-content-accordion-header-padding-top: 16px;
625
- --opportunities-filters-clear-all-button-padding-bottom: 24px;
626
- --opportunities-filters-clear-all-button-icon-size: 24px;
627
- --opportunities-filters-clear-all-button-text-font-size: 16px;
628
- --opportunities-filters-description-font-size: 14px;
629
- --opportunities-filters-description-font-weight: 400;
630
-
631
- --search-container-height: 64px;
632
- --search-container-border-radius: 40px;
633
- --search-container-padding: 0 32px;
634
- --search-input-font-size: 16px;
635
-
636
- --paginated-grid-container-gap: 24px;
637
- --paginated-grid-pagination-number-width: 36px;
638
- --paginated-grid-pagination-number-height: 44px;
639
- --paginated-grid-pagination-number-border-radius: 6px;
640
- }
641
- }
642
-
643
- @media (min-width: 1440px) {
644
- :root {
645
- --max-width-section: 1440px;
646
-
647
- --icon-size: 48px;
648
-
649
- --text-p-font-size: 20px;
650
- --text-p-line-height: 24px;
651
- --text-p-letter-spacing: 0.1px;
652
-
653
- --text-h1-font-weight: 700;
654
- --text-h1-font-size: 32px;
655
- --text-h1-line-height: 32px;
656
- --text-h1-letter-spacing: 0.1px;
657
-
658
- --text-h4-font-weight: 600;
659
- --text-h4-font-size: 20px;
660
- --text-h4-line-height: 20px;
661
- --text-h4-letter-spacing: 0.1;
662
-
663
- --text-button-font-size: 24px;
664
-
665
- --homepage-section-container-padding: 100px 120px;
666
- --homepage-section-container-gap: 56px;
667
- --homepage-section-container-footer-justify-content: flex-end;
668
-
669
- --homepage-volunteering-categories-grid-template-columns: repeat(3, 1fr);
670
- --homepage-volunteering-categories-grid-template-rows: repeat(2, auto);
671
- --homepage-volunteering-categories-grid-gap: 32px;
672
- --homepage-volunteering-categories-header-gap: 36px;
673
- --homepage-volunteering-category-card-width: 378px;
674
- --homepage-volunteering-category-card-height: 350px;
675
- --homepage-volunteering-category-card-padding-top: 32px;
676
- --homepage-volunteering-category-card-padding-right: 32px;
677
- --homepage-volunteering-category-card-padding-bottom: 48px;
678
- --homepage-volunteering-category-card-padding-left: 32px;
679
- --homepage-volunteering-category-card-gap: 24px;
680
-
681
- --page-opportunity-grid-max-width: 1440px;
682
- --page-opportunity-grid-template-columns: 1fr 1fr 1fr 1fr;
683
- --page-opportunity-card-width: 310px;
684
- --page-opportunity-card-height: auto; /*472px;*/
685
- --page-opportunity-popup-card-width: 688px;
686
- --page-opportunity-popup-card-height: auto;
687
- --page-opportunity-popup-card-x-margins: 36px;
688
- --page-opportunity-popup-ctas-gap: 24px;
689
- --page-opportunity-popup-ctas-margin-top: 24px;
690
-
691
- --homepage-volunteering-opportunities-grid-template-columns: repeat(3, 1fr);
692
- --homepage-volunteering-opportunities-grid-template-rows: auto;
693
- --homepage-volunteering-opportunities-grid-gap: 40px;
694
- --homepage-volunteering-opportunity-card-width: 372px;
695
- --homepage-volunteering-opportunity-card-padding-top: 32px;
696
- --homepage-volunteering-opportunity-card-padding-right: 32px;
697
- --homepage-volunteering-opportunity-card-padding-bottom: 48px;
698
- --homepage-volunteering-opportunity-card-padding-left: 32px;
699
- --homepage-volunteering-opportunity-card-gap: 24px;
700
- --homepage-volunteering-opportunity-details-gap: 16px;
701
-
702
- --homepage-testimonials-header-gap: 24px;
703
- --homepage-testimonial-card-width: 384px;
704
- --homepage-testimonial-card-padding-top: 32px;
705
- --homepage-testimonial-card-padding-right: 32px;
706
- --homepage-testimonial-card-padding-bottom: 48px;
707
- --homepage-testimonial-card-padding-left: 32px;
708
- --homepage-testimonial-card-gap: 16px;
709
- --homepage-testimonial-card-text-p-font-size: 18px;
710
- --homepage-testimonial-card-text-p-line-height: 24px;
711
-
712
- --homepage-hero-section-container-height: 790px;
713
- --homepage-hero-section-container-gap: 48px;
714
- --homepage-hero-section-logo-height: 244;
715
- --homepage-hero-section-logo-width: 450;
716
- --homepage-hero-section-header-height: 80px;
717
- --homepage-hero-section-header-menu-items-flex-direction: row;
718
- --homepage-hero-section-header-menu-items-width: 680px;
719
- --homepage-hero-section-header-menu-items-gap: 20px;
720
- --homepage-hero-section-header-menu-item-fontSize: 16px;
721
- --homepage-hero-section-header-menu-item-fontWeight: 600;
722
- --homepage-hero-section-header-menu-item-letterSpacing: 0px;
723
- --homepage-hero-section-header-menu-item-lineheight: 16px;
724
- --homepage-hero-section-language-selection-min-width: 95px;
725
- --homepage-hero-section-language-option-button-radius: 4px;
726
- --homepage-hero-section-language-option-button-text-color: var(
727
- --color-aubergine-light
728
- );
729
- --homepage-hero-section-content-container-width: 680px;
730
- --homepage-hero-section-content-container-height: 485px;
731
- --homepage-hero-section-content-hero-text-container-gap: 20px;
732
- --homepage-hero-section-content-hero-text-color: var(--color-white);
733
- --homepage-hero-section-content-hero-text-fontSize: 48px;
734
- --homepage-hero-section-content-hero-text-fontWeight: 600;
735
- --homepage-hero-section-content-hero-text-letterSpacing: 0.1px;
736
- --homepage-hero-section-content-hero-text-lineheight: 48px;
737
- --homepage-hero-section-content-hero-supporting-text-fontSize: 24px;
738
- --homepage-hero-section-content-hero-supporting-text-fontWeight: 500;
739
- --homepage-hero-section-content-hero-supporting-text-letterSpacing: 0.25px;
740
- --homepage-hero-section-content-hero-supporting-text-lineheight: 24px;
741
- --homepage-hero-section-content-hero-button-container-gap: 24px;
742
- --homepage-hero-section-content-hero-button-container-flex-direction: row;
743
-
744
- --homepage-footer-partners-section-container-height: 570px;
745
- --homepage-footer-partners-section-container-padding: 64px 80px;
746
- --homepage-footer-partners-section-container-gap: 128px;
747
- --homepage-footer-partners-section-partners-container-height: 180px;
748
- --homepage-footer-partners-section-partners-container-flex-direction: row;
749
- --homepage-footer-partners-section-partners-container-justify-content: space-between;
750
- --homepage-footer-partners-section-partners-club-dialog-div-gap: 16px;
751
- --homepage-footer-partners-section-logo-club-dialog-width: 316;
752
- --homepage-footer-partners-section-logo-club-dialog-height: 58;
753
- --homepage-footer-partners-section-logo-berlin-width: 170;
754
- --homepage-footer-partners-section-logo-berlin-height: 180;
755
- --homepage-footer-partners-section-logo-eu-width: 194px;
756
- --homepage-footer-partners-section-logo-eu-height: 180px;
757
- --homepage-footer-partners-section-logo-SchönebergHilft-width: 150px;
758
- --homepage-footer-partners-section-logo-SchönebergHilft-height: 150px;
759
- --homepage-footer-partners-section-logo-n4d-width: 100px;
760
- --homepage-footer-partners-section-logo-n4d-height: 132px;
761
- --homepage-footer-partners-section-footer-container-height: 260px;
762
- --homepage-footer-partners-section-footer-container-flex-direction: row;
763
- --homepage-footer-partners-section-footer-container-justify-content: space-between;
764
- --homepage-footer-partners-section-contact-socials-container-flex-direction: column;
765
- --homepage-footer-partners-section-contact-socials-container-justify-content: unset;
766
- --homepage-footer-partners-section-contact-socials-container-gap: 20px;
767
- --homepage-footer-partners-section-contact-container-gap: 10px;
768
- --homepage-footer-partners-section-socials-container-gap: 20px;
769
- --homepage-footer-partners-section-footer-links-container-gap: 100px;
770
- --homepage-footer-partners-section-footer-links-container-width: 770px;
771
- --homepage-footer-partners-section-footer-frame-container-gap: 20px;
772
- --homepage-footer-partners-section-p-fontWeight-large: 500;
773
- --homepage-footer-partners-section-p-fontWeight-small: 400;
774
- --homepage-footer-partners-section-p-fontSize: 18px;
775
-
776
- --homepage-rac-section-container-height: 720px;
777
- --homepage-rac-section-content-container-gap: 80px;
778
- --homepage-rac-section-content-headLine-container-gap: 24px;
779
- --homepage-rac-section-content-headLine2-fontWeight: 700;
780
- --homepage-rac-section-content-headLine2-fontSize: 48px;
781
- --homepage-rac-section-content-headLine2-lineheight: 48px;
782
- --homepage-rac-section-content-headLine2-letterSpacing: 0.1px;
783
- --homepage-rac-section-content-buttons-container-flex-direction: row;
784
- --homepage-rac-section-content-buttons-container-gap: 24px;
785
-
786
- --homepage-process-section-gap: 80px;
787
- --homepage-process-section-header-gap: 56px;
788
- --homepage-process-section-video-height: 562px;
789
- --homepage-process-section-video-width: 1000px;
790
- --homepage-process-section-video-border-radius: 10px;
791
- --homepage-process-section-video-margin-left: 0;
792
- --homepage-process-section-card-flex-direction: row;
793
- --homepage-process-section-card-width: 880px;
794
- --homepage-process-section-card-height: 274px;
795
- --homepage-process-section-card-border-radius: 24px;
796
- --homepage-process-section-card-padding: 32px 64px 48px 32px;
797
- --homepage-process-section-card-gap: 32px;
798
- --homepage-process-section-card-header-flex-direction: column;
799
- --homepage-process-section-card-header-gap: 20px;
800
- --homepage-process-section-card-week-div-padding: 8px 12px 6px 12px;
801
- --homepage-process-section-card-week-div-radius: 4px;
802
- --homepage-process-section-card-info-div-gap: 20px;
803
- --homepage-process-section-card-info-headline-div-gap: 16px;
804
- --homepage-process-section-card-info-text-div-gap: 24px;
805
- --homepage-process-section-card-info-text-fontWeight: 400;
806
- --homepage-process-section-card-info-text-fontSize: 20px;
807
- --homepage-process-section-card-info-text-lineheight: 20px;
808
- --homepage-process-section-card-info-text-letterSpacing: 0px;
809
- --homepage-process-section-card-icon-size: 40px;
810
- --homepage-process-section-card-last-step-width: 296px;
811
-
812
- --homepage-events-section-container-height: 400px;
813
- --homepage-events-section-content-container-gap: 48px;
814
- --homepage-events-section-event-container-flex-direction: row;
815
- --homepage-events-section-event-container-gap: 200px;
816
- --homepage-events-section-event-card-width: 682px;
817
- --homepage-events-section-event-card-gap: 20px;
818
- --homepage-events-section-event-card-headline-gap: 16px;
819
- --homepage-events-section-event-card-event-title-tag-padding: 8px 12px;
820
- --homepage-events-section-event-card-event-title-tag-border-radius: 8px;
821
- --homepage-events-section-button-container-justify-content: end;
822
-
823
- --button-height: 72px;
824
- --button-width: fit-content;
825
- --button-padding: 16px 36px;
826
- --button-border-radius: 125px;
827
- --button-text-font-weight: 500;
828
- --button-text-font-size: 24px;
829
- --button-text-line-height: 25px;
830
- --button-text-letter-spacing: 0.13px;
831
- --button-text-text-align: center;
832
-
833
- --paginated-cards-visible-cards-container-gap: 24px;
834
-
835
- --numbering-div-width: 36px;
836
- --numbering-div-height: 36px;
837
- --numbering-div-border-radius: 18.64px;
838
-
839
- --layout-static-page-n4d-logo-width: 230;
840
- --layout-static-page-n4d-logo-height: 32;
841
- --layout-static-page-header-height: 80px;
842
- --layout-static-page-header-padding: 20px 36px;
843
- --layout-static-page-header-content-bottom-padding: 100px;
844
-
845
- --opportunities-container-width: 1312px;
846
- --opportunities-container-min-height: 1800px;
847
- --opportunities-container-gap: 40px;
848
- --opportunities-container-padding: none;
849
- --opportunities-container-padding-inline: 16px;
850
- --opportunities-header-title-tabs-gap: 24px;
851
- --opportunities-header-tabs-searchbar-gap: 20px;
852
- --opportunities-header-tabs-section-width: 980px;
853
- --opportunities-header-tabs-gap: 16px;
854
- --opportunities-header-tabs-border-bottom: 4px;
855
- --opportunities-header-tabs-padding-bottom: 4px;
856
- --opportunities-header-result-gap: 10px;
857
- --opportunities-header-result-padding: 10px;
858
- --opportunities-header-searchbar-width: 980px;
859
- --opportunities-header-searchbar-flex-direction: row;
860
- --opportunities-map-view-container-height: 300px;
861
- --opportunities-cards-container-justify-content: left;
862
- --opportunities-filters-button-height: 64px;
863
- --opportunities-filters-button-icon-size: 32px;
864
- --opportunities-filters-container-width: 320px;
865
- --opportunities-filters-container-border-bottom-radius: none;
866
- --opportunities-filters-close-filter-height: 64px;
867
- --opportunities-filters-close-filter-gap: 12px;
868
- --opportunities-filters-close-filter-padding: 16px 0px 16px 32px;
869
- --opportunities-filters-content-container-width: 350px;
870
- --opportunities-filters-content-container-gap: 16px;
871
- --opportunities-filters-content-container-padding: 40px 40px 40px 20px;
872
- --opportunities-filters-content-filter-container-gap: 16px;
873
- --opportunities-filters-content-accordion-options-gap: 8px;
874
- --opportunities-filters-content-accordion-options-max-height: 500px;
875
- --opportunities-filters-content-accordion-options-checkbox-height: 18px;
876
- --opportunities-filters-content-accordion-group-options-checkbox-height: 16px;
877
- --opportunities-filters-content-accordion-group-options-checkbox-labelFontSize: 14px;
878
- --opportunities-filters-content-accordion-header-border-top: 1px;
879
- --opportunities-filters-content-accordion-header-padding-top: 16px;
880
- --opportunities-filters-clear-all-button-padding-bottom: 24px;
881
- --opportunities-filters-clear-all-button-icon-size: 24px;
882
- --opportunities-filters-clear-all-button-text-font-size: 16px;
883
- --opportunities-filters-description-font-size: 14px;
884
- --opportunities-filters-description-font-weight: 400;
885
-
886
- --search-container-height: 60px;
887
- --search-container-border-radius: 160px;
888
- --search-container-padding: 0 32px;
889
- --search-input-font-size: 16px;
890
-
891
- --paginated-grid-container-gap: 24px;
892
- --paginated-grid-pagination-number-width: 36px;
893
- --paginated-grid-pagination-number-height: 44px;
894
- --paginated-grid-pagination-number-border-radius: 6px;
895
- }
896
- }