@onemrvapublic/design-system-theme 17.8.8-develop.1 → 17.9.1-develop.1

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,7 +1,7 @@
1
1
  @use '../utilities/media';
2
2
 
3
3
  @mixin theme($theme, $breakpoints) {
4
- .container {
4
+ .onemrva-layout-container {
5
5
  width: 100%;
6
6
  padding-right: 8px;
7
7
  padding-left: 8px;
package/index.scss CHANGED
@@ -148,7 +148,7 @@
148
148
  }
149
149
 
150
150
  // Load everything (size does not matter)
151
- @mixin onemrva($b: variables.$breakpoints) {
151
+ @mixin onemrva($production: true) {
152
152
  //@include mat.core-theme(variables.$onemrva-theme);
153
153
  //@include mat.all-component-themes(variables.$onemrva-theme);
154
154
  //@include mat.all-component-typographies(
@@ -156,7 +156,7 @@
156
156
  //);
157
157
 
158
158
  @include reset();
159
- @include fonts.theme(variables.$onemrva-theme);
159
+ @include fonts.theme(variables.$onemrva-theme, $production);
160
160
  @include links.theme(variables.$onemrva-theme);
161
161
  @include core();
162
162
 
@@ -199,7 +199,7 @@
199
199
 
200
200
  @include choice-chips.theme(variables.$onemrva-theme);
201
201
  @include drag-and-drop.theme(variables.$onemrva-theme);
202
- @include container.theme(variables.$onemrva-theme, $b);
202
+ @include container.theme(variables.$onemrva-theme, variables.$breakpoints);
203
203
 
204
204
  @include spacing.spacing();
205
205
  @include grid.grid();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onemrvapublic/design-system-theme",
3
- "version": "v17.8.8-develop.1",
3
+ "version": "v17.9.1-develop.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -1,51 +1,53 @@
1
- @use "../fonts/material-icons";
2
- @use "@angular/material" as mat;
3
- @use "sass:map";
4
- @use "../components/µ";
1
+ @use '@angular/material' as mat;
2
+ @use 'sass:map';
3
+ @use '../components/µ';
5
4
 
6
- @use "../fonts/poppins";
7
- @use "../fonts/source-sans-pro";
8
-
9
- //@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
10
- //@import url('https://fonts.cdnfonts.com/css/source-sans-pro');
11
-
12
- @mixin theme($onemrva-theme) {
13
-
14
- @include material-icons.theme();
15
- @include poppins.theme();
16
- @include source-sans-pro.theme();
17
-
18
- $typography: map.get($onemrva-theme, "typography");
19
-
20
- h1 {
21
- font-family: mat.font-family($typography, headline-5);
22
- color: µ.grayscale($onemrva-theme, 900);
23
- }
24
- h2 {
25
- font-family: mat.font-family($typography, headline-6);
26
- color: µ.grayscale($onemrva-theme, 900);
5
+ @mixin theme($onemrva-theme, $production: true) {
6
+ @if ($production) {
7
+ @at-root {
8
+ @import url('https://cdn.services.rvaonem.fgov.be/font/poppins/import.css');
9
+ @import url('https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/import.css');
10
+ @import url('https://cdn.services.rvaonem.fgov.be/font/material/import.css');
27
11
  }
28
- h3 {
29
- font-family: mat.font-family($typography, subtitle-1);
30
- color: µ.grayscale($onemrva-theme, 900);
31
- }
32
- h4 {
33
- @include mat.typography-level($typography, "mat-h4");
34
- font-family: mat.font-family($typography, "mat-h4");
35
- color: µ.grayscale($onemrva-theme, 900);
36
- }
37
- h5 {
38
- font-family: mat.font-family($typography, subtitle-1);
39
- font-weight: 600;
40
- font-size: 18px;
41
- line-height: 32px;
42
- color: µ.grayscale($onemrva-theme, 900);
43
- }
44
- h6 /* always the case bu makes this rule more specific than the default one */ {
45
- font-family: mat.font-family($typography, subtitle-1);
46
- font-weight: 600;
47
- font-size: 16px;
48
- line-height: 28px;
49
- color: µ.grayscale($onemrva-theme, 900);
12
+ } @else {
13
+ @at-root {
14
+ @import url('https://cdn.servicesval.rvaonem.fgov.be/font/poppins/import.css');
15
+ @import url('https://cdn.servicesval.rvaonem.fgov.be/font/source-sans-pro/import.css');
16
+ @import url('https://cdn.servicesval.rvaonem.fgov.be/font/material/import.css');
50
17
  }
18
+ }
19
+
20
+ $typography: map.get($onemrva-theme, 'typography');
21
+
22
+ h1 {
23
+ font-family: mat.font-family($typography, headline-5);
24
+ color: µ.grayscale($onemrva-theme, 900);
25
+ }
26
+ h2 {
27
+ font-family: mat.font-family($typography, headline-6);
28
+ color: µ.grayscale($onemrva-theme, 900);
29
+ }
30
+ h3 {
31
+ font-family: mat.font-family($typography, subtitle-1);
32
+ color: µ.grayscale($onemrva-theme, 900);
33
+ }
34
+ h4 {
35
+ @include mat.typography-level($typography, 'mat-h4');
36
+ font-family: mat.font-family($typography, 'mat-h4');
37
+ color: µ.grayscale($onemrva-theme, 900);
38
+ }
39
+ h5 {
40
+ font-family: mat.font-family($typography, subtitle-1);
41
+ font-weight: 600;
42
+ font-size: 18px;
43
+ line-height: 32px;
44
+ color: µ.grayscale($onemrva-theme, 900);
45
+ }
46
+ h6 /* always the case bu makes this rule more specific than the default one */ {
47
+ font-family: mat.font-family($typography, subtitle-1);
48
+ font-weight: 600;
49
+ font-size: 16px;
50
+ line-height: 28px;
51
+ color: µ.grayscale($onemrva-theme, 900);
52
+ }
51
53
  }
@@ -1,27 +0,0 @@
1
- @mixin theme() {
2
- @at-root {
3
- @font-face {
4
- font-family: 'Material Icons';
5
- font-style: normal;
6
- font-weight: 400;
7
- src: url(https://cdn.services.rvaonem.fgov.be/font/material/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2)
8
- format('woff2');
9
- }
10
- }
11
-
12
- .material-icons {
13
- font-family: 'Material Icons';
14
- font-weight: normal;
15
- font-style: normal;
16
- font-size: 20px;
17
- letter-spacing: normal;
18
- text-transform: none;
19
- display: inline-block;
20
- white-space: nowrap;
21
- word-wrap: normal;
22
- direction: ltr;
23
- -webkit-font-feature-settings: 'liga';
24
- font-feature-settings: 'liga';
25
- -webkit-font-smoothing: antialiased;
26
- }
27
- }
@@ -1,634 +0,0 @@
1
- @mixin theme() {
2
- @at-root {
3
- /* devanagari */
4
- @font-face {
5
- font-family: 'Poppins';
6
- font-style: italic;
7
- font-weight: 100;
8
- font-display: swap;
9
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiAyp8kv8JHgFVrJJLmE0tDMPKzSQ.woff2)
10
- format('woff2');
11
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
12
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
13
- }
14
- /* latin-ext */
15
- @font-face {
16
- font-family: 'Poppins';
17
- font-style: italic;
18
- font-weight: 100;
19
- font-display: swap;
20
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiAyp8kv8JHgFVrJJLmE0tMMPKzSQ.woff2)
21
- format('woff2');
22
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
23
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
24
- U+A720-A7FF;
25
- }
26
- /* latin */
27
- @font-face {
28
- font-family: 'Poppins';
29
- font-style: italic;
30
- font-weight: 100;
31
- font-display: swap;
32
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiAyp8kv8JHgFVrJJLmE0tCMPI.woff2)
33
- format('woff2');
34
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
35
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
36
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
37
- }
38
- /* devanagari */
39
- @font-face {
40
- font-family: 'Poppins';
41
- font-style: italic;
42
- font-weight: 200;
43
- font-display: swap;
44
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmv1pVFteOcEg.woff2)
45
- format('woff2');
46
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
47
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
48
- }
49
- /* latin-ext */
50
- @font-face {
51
- font-family: 'Poppins';
52
- font-style: italic;
53
- font-weight: 200;
54
- font-display: swap;
55
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmv1pVGdeOcEg.woff2)
56
- format('woff2');
57
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
58
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
59
- U+A720-A7FF;
60
- }
61
- /* latin */
62
- @font-face {
63
- font-family: 'Poppins';
64
- font-style: italic;
65
- font-weight: 200;
66
- font-display: swap;
67
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmv1pVF9eO.woff2)
68
- format('woff2');
69
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
70
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
71
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
72
- }
73
- /* devanagari */
74
- @font-face {
75
- font-family: 'Poppins';
76
- font-style: italic;
77
- font-weight: 300;
78
- font-display: swap;
79
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm21lVFteOcEg.woff2)
80
- format('woff2');
81
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
82
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
83
- }
84
- /* latin-ext */
85
- @font-face {
86
- font-family: 'Poppins';
87
- font-style: italic;
88
- font-weight: 300;
89
- font-display: swap;
90
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm21lVGdeOcEg.woff2)
91
- format('woff2');
92
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
93
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
94
- U+A720-A7FF;
95
- }
96
- /* latin */
97
- @font-face {
98
- font-family: 'Poppins';
99
- font-style: italic;
100
- font-weight: 300;
101
- font-display: swap;
102
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm21lVF9eO.woff2)
103
- format('woff2');
104
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
105
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
106
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
107
- }
108
- /* devanagari */
109
- @font-face {
110
- font-family: 'Poppins';
111
- font-style: italic;
112
- font-weight: 400;
113
- font-display: swap;
114
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiGyp8kv8JHgFVrJJLucXtAKPY.woff2)
115
- format('woff2');
116
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
117
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
118
- }
119
- /* latin-ext */
120
- @font-face {
121
- font-family: 'Poppins';
122
- font-style: italic;
123
- font-weight: 400;
124
- font-display: swap;
125
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiGyp8kv8JHgFVrJJLufntAKPY.woff2)
126
- format('woff2');
127
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
128
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
129
- U+A720-A7FF;
130
- }
131
- /* latin */
132
- @font-face {
133
- font-family: 'Poppins';
134
- font-style: italic;
135
- font-weight: 400;
136
- font-display: swap;
137
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiGyp8kv8JHgFVrJJLucHtA.woff2)
138
- format('woff2');
139
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
140
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
141
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
142
- }
143
- /* devanagari */
144
- @font-face {
145
- font-family: 'Poppins';
146
- font-style: italic;
147
- font-weight: 500;
148
- font-display: swap;
149
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmg1hVFteOcEg.woff2)
150
- format('woff2');
151
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
152
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
153
- }
154
- /* latin-ext */
155
- @font-face {
156
- font-family: 'Poppins';
157
- font-style: italic;
158
- font-weight: 500;
159
- font-display: swap;
160
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmg1hVGdeOcEg.woff2)
161
- format('woff2');
162
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
163
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
164
- U+A720-A7FF;
165
- }
166
- /* latin */
167
- @font-face {
168
- font-family: 'Poppins';
169
- font-style: italic;
170
- font-weight: 500;
171
- font-display: swap;
172
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmg1hVF9eO.woff2)
173
- format('woff2');
174
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
175
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
176
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
177
- }
178
- /* devanagari */
179
- @font-face {
180
- font-family: 'Poppins';
181
- font-style: italic;
182
- font-weight: 600;
183
- font-display: swap;
184
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmr19VFteOcEg.woff2)
185
- format('woff2');
186
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
187
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
188
- }
189
- /* latin-ext */
190
- @font-face {
191
- font-family: 'Poppins';
192
- font-style: italic;
193
- font-weight: 600;
194
- font-display: swap;
195
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmr19VGdeOcEg.woff2)
196
- format('woff2');
197
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
198
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
199
- U+A720-A7FF;
200
- }
201
- /* latin */
202
- @font-face {
203
- font-family: 'Poppins';
204
- font-style: italic;
205
- font-weight: 600;
206
- font-display: swap;
207
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmr19VF9eO.woff2)
208
- format('woff2');
209
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
210
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
211
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
212
- }
213
- /* devanagari */
214
- @font-face {
215
- font-family: 'Poppins';
216
- font-style: italic;
217
- font-weight: 700;
218
- font-display: swap;
219
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmy15VFteOcEg.woff2)
220
- format('woff2');
221
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
222
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
223
- }
224
- /* latin-ext */
225
- @font-face {
226
- font-family: 'Poppins';
227
- font-style: italic;
228
- font-weight: 700;
229
- font-display: swap;
230
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmy15VGdeOcEg.woff2)
231
- format('woff2');
232
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
233
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
234
- U+A720-A7FF;
235
- }
236
- /* latin */
237
- @font-face {
238
- font-family: 'Poppins';
239
- font-style: italic;
240
- font-weight: 700;
241
- font-display: swap;
242
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLmy15VF9eO.woff2)
243
- format('woff2');
244
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
245
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
246
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
247
- }
248
- /* devanagari */
249
- @font-face {
250
- font-family: 'Poppins';
251
- font-style: italic;
252
- font-weight: 800;
253
- font-display: swap;
254
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm111VFteOcEg.woff2)
255
- format('woff2');
256
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
257
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
258
- }
259
- /* latin-ext */
260
- @font-face {
261
- font-family: 'Poppins';
262
- font-style: italic;
263
- font-weight: 800;
264
- font-display: swap;
265
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm111VGdeOcEg.woff2)
266
- format('woff2');
267
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
268
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
269
- U+A720-A7FF;
270
- }
271
- /* latin */
272
- @font-face {
273
- font-family: 'Poppins';
274
- font-style: italic;
275
- font-weight: 800;
276
- font-display: swap;
277
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm111VF9eO.woff2)
278
- format('woff2');
279
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
280
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
281
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
282
- }
283
- /* devanagari */
284
- @font-face {
285
- font-family: 'Poppins';
286
- font-style: italic;
287
- font-weight: 900;
288
- font-display: swap;
289
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm81xVFteOcEg.woff2)
290
- format('woff2');
291
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
292
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
293
- }
294
- /* latin-ext */
295
- @font-face {
296
- font-family: 'Poppins';
297
- font-style: italic;
298
- font-weight: 900;
299
- font-display: swap;
300
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm81xVGdeOcEg.woff2)
301
- format('woff2');
302
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
303
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
304
- U+A720-A7FF;
305
- }
306
- /* latin */
307
- @font-face {
308
- font-family: 'Poppins';
309
- font-style: italic;
310
- font-weight: 900;
311
- font-display: swap;
312
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiDyp8kv8JHgFVrJJLm81xVF9eO.woff2)
313
- format('woff2');
314
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
315
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
316
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
317
- }
318
- /* devanagari */
319
- @font-face {
320
- font-family: 'Poppins';
321
- font-style: normal;
322
- font-weight: 100;
323
- font-display: swap;
324
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiGyp8kv8JHgFVrLPTucXtAKPY.woff2)
325
- format('woff2');
326
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
327
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
328
- }
329
- /* latin-ext */
330
- @font-face {
331
- font-family: 'Poppins';
332
- font-style: normal;
333
- font-weight: 100;
334
- font-display: swap;
335
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiGyp8kv8JHgFVrLPTufntAKPY.woff2)
336
- format('woff2');
337
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
338
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
339
- U+A720-A7FF;
340
- }
341
- /* latin */
342
- @font-face {
343
- font-family: 'Poppins';
344
- font-style: normal;
345
- font-weight: 100;
346
- font-display: swap;
347
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiGyp8kv8JHgFVrLPTucHtA.woff2)
348
- format('woff2');
349
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
350
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
351
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
352
- }
353
- /* devanagari */
354
- @font-face {
355
- font-family: 'Poppins';
356
- font-style: normal;
357
- font-weight: 200;
358
- font-display: swap;
359
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLFj_Z11lFc-K.woff2)
360
- format('woff2');
361
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
362
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
363
- }
364
- /* latin-ext */
365
- @font-face {
366
- font-family: 'Poppins';
367
- font-style: normal;
368
- font-weight: 200;
369
- font-display: swap;
370
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLFj_Z1JlFc-K.woff2)
371
- format('woff2');
372
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
373
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
374
- U+A720-A7FF;
375
- }
376
- /* latin */
377
- @font-face {
378
- font-family: 'Poppins';
379
- font-style: normal;
380
- font-weight: 200;
381
- font-display: swap;
382
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2)
383
- format('woff2');
384
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
385
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
386
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
387
- }
388
- /* devanagari */
389
- @font-face {
390
- font-family: 'Poppins';
391
- font-style: normal;
392
- font-weight: 300;
393
- font-display: swap;
394
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2)
395
- format('woff2');
396
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
397
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
398
- }
399
- /* latin-ext */
400
- @font-face {
401
- font-family: 'Poppins';
402
- font-style: normal;
403
- font-weight: 300;
404
- font-display: swap;
405
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2)
406
- format('woff2');
407
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
408
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
409
- U+A720-A7FF;
410
- }
411
- /* latin */
412
- @font-face {
413
- font-family: 'Poppins';
414
- font-style: normal;
415
- font-weight: 300;
416
- font-display: swap;
417
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2)
418
- format('woff2');
419
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
420
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
421
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
422
- }
423
- /* devanagari */
424
- @font-face {
425
- font-family: 'Poppins';
426
- font-style: normal;
427
- font-weight: 400;
428
- font-display: swap;
429
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiEyp8kv8JHgFVrJJbecmNE.woff2)
430
- format('woff2');
431
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
432
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
433
- }
434
- /* latin-ext */
435
- @font-face {
436
- font-family: 'Poppins';
437
- font-style: normal;
438
- font-weight: 400;
439
- font-display: swap;
440
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiEyp8kv8JHgFVrJJnecmNE.woff2)
441
- format('woff2');
442
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
443
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
444
- U+A720-A7FF;
445
- }
446
- /* latin */
447
- @font-face {
448
- font-family: 'Poppins';
449
- font-style: normal;
450
- font-weight: 400;
451
- font-display: swap;
452
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiEyp8kv8JHgFVrJJfecg.woff2)
453
- format('woff2');
454
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
455
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
456
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
457
- }
458
- /* devanagari */
459
- @font-face {
460
- font-family: 'Poppins';
461
- font-style: normal;
462
- font-weight: 500;
463
- font-display: swap;
464
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2)
465
- format('woff2');
466
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
467
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
468
- }
469
- /* latin-ext */
470
- @font-face {
471
- font-family: 'Poppins';
472
- font-style: normal;
473
- font-weight: 500;
474
- font-display: swap;
475
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2)
476
- format('woff2');
477
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
478
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
479
- U+A720-A7FF;
480
- }
481
- /* latin */
482
- @font-face {
483
- font-family: 'Poppins';
484
- font-style: normal;
485
- font-weight: 500;
486
- font-display: swap;
487
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2)
488
- format('woff2');
489
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
490
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
491
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
492
- }
493
- /* devanagari */
494
- @font-face {
495
- font-family: 'Poppins';
496
- font-style: normal;
497
- font-weight: 600;
498
- font-display: swap;
499
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2)
500
- format('woff2');
501
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
502
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
503
- }
504
- /* latin-ext */
505
- @font-face {
506
- font-family: 'Poppins';
507
- font-style: normal;
508
- font-weight: 600;
509
- font-display: swap;
510
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2)
511
- format('woff2');
512
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
513
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
514
- U+A720-A7FF;
515
- }
516
- /* latin */
517
- @font-face {
518
- font-family: 'Poppins';
519
- font-style: normal;
520
- font-weight: 600;
521
- font-display: swap;
522
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2)
523
- format('woff2');
524
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
525
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
526
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
527
- }
528
- /* devanagari */
529
- @font-face {
530
- font-family: 'Poppins';
531
- font-style: normal;
532
- font-weight: 700;
533
- font-display: swap;
534
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2)
535
- format('woff2');
536
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
537
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
538
- }
539
- /* latin-ext */
540
- @font-face {
541
- font-family: 'Poppins';
542
- font-style: normal;
543
- font-weight: 700;
544
- font-display: swap;
545
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2)
546
- format('woff2');
547
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
548
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
549
- U+A720-A7FF;
550
- }
551
- /* latin */
552
- @font-face {
553
- font-family: 'Poppins';
554
- font-style: normal;
555
- font-weight: 700;
556
- font-display: swap;
557
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2)
558
- format('woff2');
559
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
560
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
561
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
562
- }
563
- /* devanagari */
564
- @font-face {
565
- font-family: 'Poppins';
566
- font-style: normal;
567
- font-weight: 800;
568
- font-display: swap;
569
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2)
570
- format('woff2');
571
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
572
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
573
- }
574
- /* latin-ext */
575
- @font-face {
576
- font-family: 'Poppins';
577
- font-style: normal;
578
- font-weight: 800;
579
- font-display: swap;
580
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2)
581
- format('woff2');
582
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
583
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
584
- U+A720-A7FF;
585
- }
586
- /* latin */
587
- @font-face {
588
- font-family: 'Poppins';
589
- font-style: normal;
590
- font-weight: 800;
591
- font-display: swap;
592
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2)
593
- format('woff2');
594
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
595
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
596
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
597
- }
598
- /* devanagari */
599
- @font-face {
600
- font-family: 'Poppins';
601
- font-style: normal;
602
- font-weight: 900;
603
- font-display: swap;
604
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLBT5Z11lFc-K.woff2)
605
- format('woff2');
606
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9,
607
- U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
608
- }
609
- /* latin-ext */
610
- @font-face {
611
- font-family: 'Poppins';
612
- font-style: normal;
613
- font-weight: 900;
614
- font-display: swap;
615
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLBT5Z1JlFc-K.woff2)
616
- format('woff2');
617
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
618
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
619
- U+A720-A7FF;
620
- }
621
- /* latin */
622
- @font-face {
623
- font-family: 'Poppins';
624
- font-style: normal;
625
- font-weight: 900;
626
- font-display: swap;
627
- src: url(https://cdn.services.rvaonem.fgov.be/font/poppins/pxiByp8kv8JHgFVrLBT5Z1xlFQ.woff2)
628
- format('woff2');
629
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
630
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
631
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
632
- }
633
- }
634
- }
@@ -1,160 +0,0 @@
1
- @mixin theme() {
2
- @at-root {
3
- /* cyrillic-ext */
4
- @font-face {
5
- font-family: 'Source Sans Pro';
6
- font-style: italic;
7
- font-weight: 200 900;
8
- font-display: swap;
9
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpMtKy2OAdR1K-IwhWudF-R3woqauLY1HY.woff2)
10
- format('woff2');
11
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
12
- U+FE2E-FE2F;
13
- }
14
- /* cyrillic */
15
- @font-face {
16
- font-family: 'Source Sans Pro';
17
- font-style: italic;
18
- font-weight: 200 900;
19
- font-display: swap;
20
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpMtKy2OAdR1K-IwhWudF-R3woqY-LY1HY.woff2)
21
- format('woff2');
22
- unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
23
- }
24
- /* greek-ext */
25
- @font-face {
26
- font-family: 'Source Sans Pro';
27
- font-style: italic;
28
- font-weight: 200 900;
29
- font-display: swap;
30
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpMtKy2OAdR1K-IwhWudF-R3woqa-LY1HY.woff2)
31
- format('woff2');
32
- unicode-range: U+1F00-1FFF;
33
- }
34
- /* greek */
35
- @font-face {
36
- font-family: 'Source Sans Pro';
37
- font-style: italic;
38
- font-weight: 200 900;
39
- font-display: swap;
40
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpMtKy2OAdR1K-IwhWudF-R3woqZOLY1HY.woff2)
41
- format('woff2');
42
- unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
43
- U+03A3-03FF;
44
- }
45
- /* vietnamese */
46
- @font-face {
47
- font-family: 'Source Sans Pro';
48
- font-style: italic;
49
- font-weight: 200 900;
50
- font-display: swap;
51
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpMtKy2OAdR1K-IwhWudF-R3woqaOLY1HY.woff2)
52
- format('woff2');
53
- unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
54
- U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323,
55
- U+0329, U+1EA0-1EF9, U+20AB;
56
- }
57
- /* latin-ext */
58
- @font-face {
59
- font-family: 'Source Sans Pro';
60
- font-style: italic;
61
- font-weight: 200 900;
62
- font-display: swap;
63
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpMtKy2OAdR1K-IwhWudF-R3woqaeLY1HY.woff2)
64
- format('woff2');
65
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
66
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
67
- U+A720-A7FF;
68
- }
69
- /* latin */
70
- @font-face {
71
- font-family: 'Source Sans Pro';
72
- font-style: italic;
73
- font-weight: 200 900;
74
- font-display: swap;
75
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpMtKy2OAdR1K-IwhWudF-R3woqZ-LY.woff2)
76
- format('woff2');
77
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
78
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
79
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
80
- }
81
- /* cyrillic-ext */
82
- @font-face {
83
- font-family: 'Source Sans Pro';
84
- font-style: normal;
85
- font-weight: 200 900;
86
- font-display: swap;
87
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpStKy2OAdR1K-IwhWudF-R3wIaZfrc.woff2)
88
- format('woff2');
89
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
90
- U+FE2E-FE2F;
91
- }
92
- /* cyrillic */
93
- @font-face {
94
- font-family: 'Source Sans Pro';
95
- font-style: normal;
96
- font-weight: 200 900;
97
- font-display: swap;
98
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpStKy2OAdR1K-IwhWudF-R3wsaZfrc.woff2)
99
- format('woff2');
100
- unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
101
- }
102
- /* greek-ext */
103
- @font-face {
104
- font-family: 'Source Sans Pro';
105
- font-style: normal;
106
- font-weight: 200 900;
107
- font-display: swap;
108
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpStKy2OAdR1K-IwhWudF-R3wMaZfrc.woff2)
109
- format('woff2');
110
- unicode-range: U+1F00-1FFF;
111
- }
112
- /* greek */
113
- @font-face {
114
- font-family: 'Source Sans Pro';
115
- font-style: normal;
116
- font-weight: 200 900;
117
- font-display: swap;
118
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpStKy2OAdR1K-IwhWudF-R3wwaZfrc.woff2)
119
- format('woff2');
120
- unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
121
- U+03A3-03FF;
122
- }
123
- /* vietnamese */
124
- @font-face {
125
- font-family: 'Source Sans Pro';
126
- font-style: normal;
127
- font-weight: 200 900;
128
- font-display: swap;
129
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpStKy2OAdR1K-IwhWudF-R3wAaZfrc.woff2)
130
- format('woff2');
131
- unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
132
- U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323,
133
- U+0329, U+1EA0-1EF9, U+20AB;
134
- }
135
- /* latin-ext */
136
- @font-face {
137
- font-family: 'Source Sans Pro';
138
- font-style: normal;
139
- font-weight: 200 900;
140
- font-display: swap;
141
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpStKy2OAdR1K-IwhWudF-R3wEaZfrc.woff2)
142
- format('woff2');
143
- unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
144
- U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
145
- U+A720-A7FF;
146
- }
147
- /* latin */
148
- @font-face {
149
- font-family: 'Source Sans Pro';
150
- font-style: normal;
151
- font-weight: 200 900;
152
- font-display: swap;
153
- src: url(https://cdn.services.rvaonem.fgov.be/font/source-sans-pro/nwpStKy2OAdR1K-IwhWudF-R3w8aZQ.woff2)
154
- format('woff2');
155
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
156
- U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
157
- U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
158
- }
159
- }
160
- }