-
Notifications
You must be signed in to change notification settings - Fork 4
/
glossary.css
419 lines (367 loc) · 22.3 KB
/
glossary.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind variants;
@layer components {
html {
@apply min-h-full;
}
body {
@apply antialiased bg-gray-100 dark:bg-gray-900 print:bg-white min-h-full;
}
div#glossary-page-container {
@apply flex flex-col min-h-screen text-gray-900 dark:text-gray-100 print:text-black;
}
div#glossary-page-container header {
@apply pt-6 pb-4 px-4 sm:px-6 lg:px-8 print:px-0 print:max-w-full;
}
div#glossary-page-container footer {
@apply px-6 lg:px-8 print:px-0 pt-16 pb-6 mt-auto;
}
div#glossary-page-container footer > div {
@apply border-t border-gray-300 dark:border-gray-700 pt-6 w-full flex justify-center text-sm text-gray-600 dark:text-gray-300 print:text-black;
}
div#glossary-page-container footer a {
@apply hover:underline print:text-black;
}
div#glossary-page-about {
@apply pb-3;
}
div#glossary-page-container main {
@apply px-6 lg:px-8 print:px-0 print:max-w-full;
}
div#glossary-page-container:not([data-markdown-rendered="true"]) div#glossary-page-about > p {
@apply font-mono whitespace-pre-wrap;
}
div#glossary-page-about > ul {
@apply pt-4 ml-1 list-disc list-inside;
}
h1#glossary-page-title {
@apply text-3xl font-bold leading-tight;
}
#glossary-page-tags > dl {
@apply mt-4;
}
#glossary-page-tags > dl > div > dt::before {
@apply content-["•_"];
}
#glossary-page-tags > dl > div > dt {
@apply font-mono;
}
#glossary-page-tags > dl > div > dd {
@apply font-mono whitespace-pre-wrap mb-5;
}
article#glossary-page-items dl {
@apply grid print:block print:space-y-5 gap-5;
}
div#glossary-page-container:not([data-card-width]) article#glossary-page-items dl,
div#glossary-page-container[data-card-width="compact"] article#glossary-page-items dl {
@apply grid-cols-1 sm:grid-cols-2 xl:grid-cols-3 3xl:grid-cols-4;
}
div#glossary-page-container[data-card-width="intermediate"] article#glossary-page-items dl {
@apply grid-cols-1 xl:grid-cols-2 3xl:grid-cols-3;
}
div#glossary-page-container[data-card-width="wide"] article#glossary-page-items dl {
@apply grid-cols-1 2xl:grid-cols-2;
}
article#glossary-page-items dl > div {
@apply bg-white dark:bg-gray-800 print:bg-white border dark:border-gray-700 print:border-none rounded-lg print:px-0 px-4 py-4 print:py-0 print:break-inside-avoid-page;
}
div#glossary-page-container:not([data-card-width]) article#glossary-page-items dl > div,
div#glossary-page-container[data-card-width="compact"] article#glossary-page-items dl > div {
@apply grid-cols-1 sm:grid-cols-2 xl:grid-cols-3 3xl:grid-cols-4 sm:max-h-96 sm:overflow-auto print:max-h-full;
}
div#glossary-page-container[data-card-width="intermediate"] article#glossary-page-items dl > div {
@apply xl:max-h-96 xl:overflow-auto print:max-h-full;
}
div#glossary-page-container[data-card-width="wide"] article#glossary-page-items dl > div {
@apply 2xl:max-h-96 2xl:overflow-auto print:max-h-full;
}
article#glossary-page-items dl dt {
@apply font-semibold print:font-normal text-gray-600 dark:text-gray-200 print:text-black;
}
article#glossary-page-items dl dt dfn {
@apply not-italic print:italic scroll-mt-24;
}
article#glossary-page-items dl dd {
@apply mt-1 print:mt-0 py-2 print:py-0 text-gray-600 dark:text-gray-300 print:text-black;
}
article#glossary-page-items dl dd.tags {
@apply mt-2 flex items-start;
}
article#glossary-page-items dl dd.tags > button {
@apply rounded-full border border-gray-300 dark:border-gray-500 bg-white dark:bg-gray-800 px-2 py-1 text-sm text-gray-700 dark:text-gray-100 shadow-sm cursor-default mr-2 mb-2;
}
article#glossary-page-items dl dd.needs-updating {
@apply mt-1 py-2 print:py-2 text-gray-600 dark:text-gray-300 print:text-black;
}
article#glossary-page-items dl dd.needs-updating span {
@apply inline-flex items-center rounded-md bg-yellow-50 dark:bg-yellow-400/10 px-2 py-1 text-sm font-medium text-yellow-800 dark:text-yellow-500 ring-1 ring-inset ring-yellow-600/20 dark:ring-yellow-400/20;
}
div#glossary-page-container:not([data-markdown-rendered="true"]) article#glossary-page-items dl dd:not(.related-terms) {
@apply font-mono whitespace-pre-wrap;
}
article#glossary-page-items dl dd a {
@apply text-gray-600 dark:text-gray-300 print:text-black;
}
@media screen {
article#glossary-page-items dl dd a[href^="http"]::after {
@apply content-[""] ml-1 -mb-px w-4 h-4 bg-center bg-no-repeat bg-contain inline-block;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%231F2937' %3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 003 8.25v10.5A2.25 2.25 0 005.25 21h10.5A2.25 2.25 0 0018 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25' /%3E%3C/svg%3E");
}
.dark article#glossary-page-items dl dd a[href^="http"]::after {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23E5E7EB' %3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 003 8.25v10.5A2.25 2.25 0 005.25 21h10.5A2.25 2.25 0 0018 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25' /%3E%3C/svg%3E");
}
div#glossary-page-about a[href^="http"]::after {
@apply content-[""] ml-1 -mb-px w-4 h-4 bg-center bg-no-repeat bg-contain inline-block;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%231F2937' %3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 003 8.25v10.5A2.25 2.25 0 005.25 21h10.5A2.25 2.25 0 0018 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25' /%3E%3C/svg%3E");
}
.dark div#glossary-page-about a[href^="http"]::after {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23E5E7EB' %3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 003 8.25v10.5A2.25 2.25 0 005.25 21h10.5A2.25 2.25 0 0018 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25' /%3E%3C/svg%3E");
}
}
article#glossary-page-items dl dd.related-terms {
@apply print:mt-2;
}
#glossary-page-tags > p > button {
@apply rounded-full border border-gray-300 dark:border-gray-500 bg-white dark:bg-gray-900 px-2 py-1 text-gray-700 dark:text-gray-200 shadow-sm cursor-default mr-2 mb-2;
}
div#glossary-page-container:not([data-markdown-rendered="true"]) #glossary-page-tags > p > button {
@apply font-mono whitespace-pre-wrap;
}
a {
@apply hover:underline text-indigo-600 dark:text-amber-300 print:text-black;
}
dt span.silcrow {
@apply ml-1.5 select-none;
}
dt span.silcrow a {
@apply text-inherit no-underline text-gray-500 dark:text-gray-400 font-normal;
}
/* Start of trick for autogrowing textareas
https://css-tricks.com/the-cleanest-trick-for-autogrowing-textareas/ */
.grow-wrap {
@apply grid;
}
.grow-wrap::after {
@apply whitespace-pre-wrap invisible;
content: attr(data-replicated-value) " ";
}
.grow-wrap > textarea {
@apply resize-none overflow-hidden;
}
.grow-wrap > textarea,
.grow-wrap::after {
@apply shadow-sm w-full rounded-md border;
grid-area: 1 / 1 / 2 / 2;
}
/* End of trick for autogrowing textareas */
}
/* source-sans-3-200 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 200;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-200.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-200.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-200.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-200italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: italic;
font-weight: 200;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-200italic.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-200italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-200italic.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-200italic.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-200italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-200italic.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-300 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 300;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-300.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-300.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-300.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-300italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: italic;
font-weight: 300;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-300italic.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-300italic.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-300italic.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 400;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-regular.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-regular.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-regular.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: italic;
font-weight: 400;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-italic.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-italic.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-italic.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-500 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 500;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-500.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-500.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-500.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-500italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: italic;
font-weight: 500;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-500italic.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-500italic.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-500italic.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-600 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 600;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-600.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-600.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-600.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-600italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: italic;
font-weight: 600;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-600italic.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-600italic.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-600italic.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-700 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 700;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-700.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-700.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-700.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-700italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: italic;
font-weight: 700;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-700italic.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-700italic.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-700italic.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-800 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 800;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-800.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-800.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-800.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-800italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: italic;
font-weight: 800;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-800italic.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-800italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-800italic.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-800italic.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-800italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-800italic.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-900 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 900;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-900.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-900.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-900.svg#SourceSans3') format('svg'); /* Legacy iOS */
}
/* source-sans-3-900italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Source Sans 3';
font-style: italic;
font-weight: 900;
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-900italic.eot'); /* IE9 Compat Modes */
src: url('https://glstatic.net/fonts/source-sans-3-v8-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-900italic.woff') format('woff'), /* Modern Browsers */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('https://glstatic.net/fonts/source-sans-3-v8-latin-900italic.svg#SourceSans3') format('svg'); /* Legacy iOS */
}