jekyll-theme-gouvfr 0.0.6 → 0.0.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 358de20b37e3654c35a7d34554858650dcfdc60f
4
- data.tar.gz: 3db0518de4202fe34e6eee13c5ebf957a3f378ad
2
+ SHA256:
3
+ metadata.gz: 5faf31df4e7e5aa0b995d3180ac261d9c3623fb49b0479c5b7d34a65c948d247
4
+ data.tar.gz: d81727d6a6a5e679a85ea23433d7aa50153e028a36182c01c566123b35fcd8f2
5
5
  SHA512:
6
- metadata.gz: 0b5d77845ef7db21b5968c70b0ee7e32b6f1a4b8fb84193856ef8d9274926824de684438e65229bb0a3cab9dda76352e653e187f8bca3cc969838aaab3be72dd
7
- data.tar.gz: 86c021de8c9bb2fa3aa512b02ac0ecf9851c4f55e908d89c4e5c55554346d75519fc5b55ff9596a2888356c89038b08a48c2f7fb04fbb222a664b482518bb97d
6
+ metadata.gz: 2a49ca77655960d9b5231e825bb6297c8a638cc80fbaff33801144c325db25a7c989da76da649e2b9fb52507e80857d36697513a5d43d9e66c4029d97c79a638
7
+ data.tar.gz: 3cce0025b143e1a5682fc962635163f6fdedc89dedc102e36f279dfa4e5b5fb001b34192e0980dee406b94a4f511c4fb2bf0bfcb3315e095d16fda54ac98716d
data/README.md CHANGED
@@ -1,2 +1,14 @@
1
- # template-jekyll
2
- Theme/Template beta/data.gouv.fr pour Jekyll
1
+ # Template Jekyll
2
+
3
+ Theme/Template beta/data.gouv.fr pour Jekyll
4
+
5
+ Ce modèle reprend des éléments de design définis dans
6
+ [template.data.gouv.fr](https://github.com/etalab/template.data.gouv.fr).
7
+
8
+ ![Capture template Jekyll](assets/images/preview_home.png)
9
+
10
+ # Licence
11
+
12
+ Ce template est publié par la mission Etalab sous [licence MIT](LICENSE.md).
13
+
14
+
@@ -5,7 +5,8 @@
5
5
  <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
6
6
  <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}" />
7
7
 
8
- <link rel="stylesheet" type="text/css" media="screen,projection" href="{{ site.url }}{{ "/assets/main.min.css" }}">
8
+ <link rel="stylesheet" type="text/css" media="screen,projection" href="{{ site.url }}{{ "/assets/css/template.css" }}">
9
+ <link rel="stylesheet" type="text/css" media="screen,projection" href="{{ site.url }}{{ "/assets/css/main.css" }}">
9
10
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}" />
10
11
  <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}" />
11
12
  </head>
@@ -3,6 +3,7 @@ layout: default
3
3
  ---
4
4
 
5
5
  {% assign lang = page.lang | default: site.lang | default: "en" %}
6
+
6
7
  <div class="page article">
7
8
  {% include hero.html title=page.title %}
8
9
  <section class="section">
@@ -14,7 +15,11 @@ layout: default
14
15
  Use the github edit link until netlify-cms support easy deep link.
15
16
  See: https://github.com/netlify/netlify-cms/issues/697
16
17
  {% endcomment %}
17
- <a class="edit-button" href="https://github.com/{{ site.github_repository }}/edit/master/{{ page.path }}">
18
+ {% if site.collections_dir == "" or site.collections_dir == nil %}
19
+ <a class="edit-button" href="https://github.com/{{ site.github_repository }}/edit/master/{{ page.path }}">
20
+ {% else %}
21
+ <a class="edit-button" href="https://github.com/{{ site.github_repository }}/edit/master/{{ site.collections_dir }}/{{ page.path }}">
22
+ {% endif %}
18
23
  ✎ {{ site.i18n[lang].edit }}
19
24
  </a>
20
25
  </div>
@@ -1,3 +1,5 @@
1
+ @import 'variables.css';
2
+
1
3
  .page .hero__container {
2
4
  min-height: unset;
3
5
  }
@@ -12,4 +14,4 @@
12
14
 
13
15
  .article__preview img + .article__author-name {
14
16
  margin-left: 0.5em;
15
- }
17
+ }
@@ -0,0 +1,2558 @@
1
+ /* global rules */
2
+
3
+ @font-face {
4
+ font-family: "Source Sans Pro";
5
+ src: url("fonts/Source Sans Pro/SourceSansPro-Regular.otf");
6
+ font-weight: 400;
7
+ }
8
+
9
+ @font-face {
10
+ font-family: "Source Sans Pro";
11
+ src: url("fonts/Source Sans Pro/SourceSansPro-Bold.otf");
12
+ font-weight: 800;
13
+ }
14
+
15
+ @font-face {
16
+ font-family: "Source Sans Pro";
17
+ src: url("fonts/Source Sans Pro/SourceSansPro-It.otf");
18
+ font-style: italic;
19
+ }
20
+
21
+ @font-face {
22
+ font-family: "Evolventa";
23
+ src: url("fonts/Evolventa/Evolventa-Regular.ttf");
24
+ font-weight: 400;
25
+ }
26
+
27
+ @font-face {
28
+ font-family: "Evolventa";
29
+ src: url("fonts/Evolventa/Evolventa-Bold.ttf");
30
+ font-weight: 800;
31
+ }
32
+
33
+ /* Variables definition */
34
+ :root {
35
+ /* Colors */
36
+ --blue: #0053b3;
37
+ --light-blue: #006be6;
38
+ --dark-blue: #003b80;
39
+ --darker-blue: #00234d;
40
+ --lighter-blue: #b4e1fa;
41
+ --white: #fff;
42
+ --lightest-grey: #fafbfc;
43
+ --lighter-grey: #ebeff3;
44
+ --light-grey: #c9d3df;
45
+ --grey: #adb9c9;
46
+ --dark-grey: #8393a7;
47
+ --darker-grey: #53657d;
48
+ --darkest-grey: #26353f;
49
+ --black: #1c1c1c;
50
+ --green: #03bd5b;
51
+ --light-green: #daf5e7;
52
+ --orange: #ff9947;
53
+ --dark-orange: #cc5c00;
54
+ --light-orange: #fff0e4;
55
+ --red: #d63626;
56
+ --dark-red: #ab2b1e;
57
+ --light-red: rgba(239,172,166,0.45882);
58
+
59
+ /* Breakpoints */
60
+ --mobile-min: 400px;
61
+ --mobile-max: 549px;
62
+ --phablet-min: 550px;
63
+ --phablet-max: 749px;
64
+ --tablet-min: 750px;
65
+ --tablet-max: 999px;
66
+ --desktop-min: 1000px;
67
+
68
+ /* Spaces */
69
+ --space-xxs: 0.25em;
70
+ --space-xs: 0.5em;
71
+ --space-s: 1em;
72
+ --space-m: 1.5em;
73
+ --space-l: 2em;
74
+ --space-xl: 3em;
75
+
76
+ /* Theme */
77
+ --theme-primary: var(--blue);
78
+ --theme-primary-light: var(--light-blue);
79
+ --theme-primary-dark: var(--dark-blue);
80
+ --theme-secondary: var(--blue);
81
+ --theme-secondary-darken: var(--dark-blue);
82
+ --theme-border: var(--grey);
83
+ --theme-border-lighter: var(--light-grey);
84
+ --theme-border-active: var(--light-blue);
85
+ --theme-border-radius: 3px;
86
+ --theme-background-white: var(--white);
87
+ --theme-background-grey: var(--lighter-grey);
88
+ --theme-background-color: var(--blue);
89
+ --theme-background-color-dark: var(--darker-blue);
90
+ --theme-background-gradient: linear-gradient(to left, var(--blue), var(--dark-blue));
91
+ --theme-background-dark: var(--black);
92
+ --theme-box-shadow: 0 1px 2px rgba(201, 211, 223, 0.2);
93
+ --theme-label-text: var(--darker-grey);
94
+ --theme-light-text: var(--white);
95
+ --theme-dark-text: var(--darkest-grey);
96
+ --theme-success-border: var(--green);
97
+ --theme-success-bg: var(--light-green);
98
+ --theme-warning-border: var(--orange);
99
+ --theme-warning-bg: var(--light-orange);
100
+ --theme-error-border: var(--red);
101
+ --theme-error-bg: var(--light-red);
102
+ --theme-info-border: var(--light-blue);
103
+ --theme-info-bg: var(--lighter-blue);
104
+ }
105
+
106
+ body {
107
+ font-family: "Source Sans Pro", Arial, sans-serif;
108
+ font-size: 16px;
109
+ line-height: 1.5em;
110
+ -webkit-font-smoothing: antialiased;
111
+ -moz-osx-font-smoothing: grayscale;
112
+ }
113
+
114
+ h1,
115
+ h2,
116
+ h3,
117
+ h4,
118
+ h5,
119
+ h6 {
120
+ font-family: "Evolventa", "Trebuchet MS", sans-serif;
121
+ }
122
+
123
+ h1:first-child,
124
+ h2:first-child,
125
+ h3:first-child,
126
+ h4:first-child,
127
+ h5:first-child,
128
+ h6:first-child {
129
+ margin-top: 0;
130
+ }
131
+
132
+ h1 {
133
+ font-size: 2em;
134
+ line-height: 1.125em;
135
+ }
136
+
137
+ h2 {
138
+ font-size: 1.75em;
139
+ line-height: 1.25em;
140
+ }
141
+
142
+ h3 {
143
+ font-size: 1.5em;
144
+ line-height: 1.5em;
145
+ }
146
+
147
+ h4 {
148
+ font-size: 1.25em;
149
+ }
150
+
151
+ h5 {
152
+ font-size: 1.125em;
153
+ }
154
+
155
+ h6 {
156
+ font-size: 1em;
157
+ }
158
+
159
+ .subtitle {
160
+ font-weight: 400;
161
+ font-family: "Source Sans Pro", Arial, sans-serif;
162
+ color: #53657d;
163
+ color: var(--darker-grey);
164
+ }
165
+
166
+ .lead-text {
167
+ font-size: 1.25em;
168
+ }
169
+
170
+ .subtitle {
171
+ color: #8393a7;
172
+ color: var(--dark-grey);
173
+ }
174
+
175
+ .text-quote {
176
+ background-color: #ebeff3;
177
+ background-color: var(--theme-background-grey);
178
+ border-left: 8px solid #c9d3df;
179
+ border-left: 8px solid var(--theme-border-lighter);
180
+ padding: 4px 0 4px 25px;
181
+ }
182
+
183
+ pre {
184
+ display: block;
185
+ margin-top: 1em;
186
+ }
187
+
188
+ code {
189
+ background: #fafbfc;
190
+ background: var(--lightest-grey);
191
+ border-radius: 3px;
192
+ border-radius: var(--theme-border-radius);
193
+ padding: 0 0.5em;
194
+ font-family: 'Courier New';
195
+ font-size: 0.9em;
196
+ word-wrap: break-word;
197
+ white-space: pre-wrap;
198
+ vertical-align: middle;
199
+ display: inline-block;
200
+ max-width: 100%;
201
+ overflow-x: auto;
202
+ }
203
+
204
+ pre code {
205
+ padding: 1em;
206
+ }
207
+
208
+ * {
209
+ -webkit-box-sizing: border-box;
210
+ box-sizing: border-box;
211
+ }
212
+
213
+ html,
214
+ body {
215
+ height: 100%;
216
+ position: relative;
217
+ }
218
+
219
+ body {
220
+ color: #26353f;
221
+ color: var(--theme-dark-text);
222
+ padding: 0;
223
+ margin: 0;
224
+ overflow: auto;
225
+ }
226
+
227
+ a,
228
+ button {
229
+ cursor: pointer;
230
+ }
231
+
232
+ a,
233
+ a:focus,
234
+ a:visited,
235
+ a:active {
236
+ text-decoration: underline;
237
+ color: #0053b3;
238
+ color: var(--theme-primary);
239
+ }
240
+
241
+ a:hover {
242
+ border-radius: 3px;
243
+ border-radius: var(--theme-border-radius);
244
+ color: #003b80;
245
+ color: var(--dark-blue);
246
+ background-color: #ebeff3;
247
+ background-color: var(--lighter-grey);
248
+ text-decoration: none;
249
+ }
250
+
251
+ small {
252
+ font-size: 0.875em;
253
+ }
254
+
255
+ hr {
256
+ border-top: 0;
257
+ border-bottom: #c9d3df;
258
+ border-bottom: var(--theme-border-lighter);
259
+ margin: 2em 0;
260
+ margin: var(--space-l) 0;
261
+ }
262
+
263
+ dt {
264
+ display: block;
265
+ color: #53657d;
266
+ color: var(--darker-grey);
267
+ }
268
+
269
+ dd {
270
+ margin: 0;
271
+ }
272
+
273
+ dd + dt {
274
+ margin-top: 0.5em;
275
+ margin-top: var(--space-xs);
276
+ }
277
+
278
+ /* basic elements */
279
+ input,
280
+ textarea,
281
+ select {
282
+ width: 100%;
283
+ outline: none;
284
+ padding: 0.5em 0.875em;
285
+ font: inherit;
286
+ line-height: 1.6;
287
+ color: #1c1c1c;
288
+ color: var(--black);
289
+ border-radius: 3px;
290
+ border-radius: var(--theme-border-radius);
291
+ border: 1px solid #adb9c9;
292
+ border: 1px solid var(--theme-border);
293
+ background: #fff;
294
+ background: var(--theme-background-white);
295
+ vertical-align: middle;
296
+ position: relative;
297
+ }
298
+
299
+ input:focus,
300
+ textarea:focus,
301
+ select:focus {
302
+ border-color: #006be6;
303
+ border-color: var(--theme-border-active);
304
+ -webkit-transition: border-color 0.2s ease-out;
305
+ transition: border-color 0.2s ease-out;
306
+ }
307
+
308
+ input:disabled,
309
+ select:disabled {
310
+ background-color: #ebeff3;
311
+ background-color: var(--theme-background-grey);
312
+ }
313
+
314
+ input[type=radio],
315
+ input[type=checkbox] {
316
+ margin: 0;
317
+ margin-right: 0.5em;
318
+ margin-right: var(--space-xs);
319
+ }
320
+
321
+ input[type=radio] {
322
+ height: 1.25em;
323
+ width: 1.25em;
324
+ border-radius: 50%;
325
+ display: inline-block;
326
+ -webkit-appearance: none;
327
+ -moz-appearance: none;
328
+ appearance: none;
329
+ padding: 0;
330
+ }
331
+
332
+ input[type=radio]::before {
333
+ content: '';
334
+ border-color: #0053b3;
335
+ border-color: var(--theme-primary);
336
+ border-radius: 50%;
337
+ position: absolute;
338
+ top: 0.35em;
339
+ left: 0.3em;
340
+ width: 0.5em;
341
+ height: 0.5em;
342
+ -webkit-transform: scale(0);
343
+ transform: scale(0);
344
+ }
345
+
346
+ input[type=radio]:checked {
347
+ background-color: #fff;
348
+ background-color: var(--theme-background-white);
349
+ border-color: #0053b3;
350
+ border-color: var(--theme-primary);
351
+ opacity: 1;
352
+ }
353
+
354
+ input[type=radio]:checked::before {
355
+ background-color: #0053b3;
356
+ background-color: var(--theme-primary);
357
+ -webkit-transform: scale(1);
358
+ transform: scale(1);
359
+ -webkit-transition: -webkit-transform 0.2s ease-out;
360
+ transition: -webkit-transform 0.2s ease-out;
361
+ transition: transform 0.2s ease-out;
362
+ transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
363
+ }
364
+
365
+ input[type="checkbox"] {
366
+ -webkit-appearance: none;
367
+ -moz-appearance: none;
368
+ appearance: none;
369
+ height: 1.4em;
370
+ width: 1.5em;
371
+ padding: 0;
372
+ }
373
+
374
+ input[type="checkbox"]:checked {
375
+ background-color: #0053b3;
376
+ background-color: var(--theme-primary);
377
+ border-color: #0053b3;
378
+ border-color: var(--theme-primary);
379
+ opacity: 1;
380
+ -webkit-transition: border-color 0.2s ease-in, background-color 0.2s ease-out;
381
+ transition: border-color 0.2s ease-in, background-color 0.2s ease-out;
382
+ }
383
+
384
+ input[type="checkbox"]::before {
385
+ -webkit-transform: scale(0);
386
+ transform: scale(0);
387
+ content: '';
388
+ position: absolute;
389
+ top: 0.2em;
390
+ left: 0.15em;
391
+ height: 1em;
392
+ width: 1em;
393
+ background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><path d="M14.23 1.304L6.112 9.501 2.767 6.117a1.029 1.029 0 0 0-1.464 0 1.054 1.054 0 0 0 0 1.479l4.055 4.101c.208.21.481.31.754.305.272.005.545-.095.753-.305l8.829-8.915a1.053 1.053 0 0 0 0-1.478 1.027 1.027 0 0 0-1.464 0z" fill="white" /></svg>') center center no-repeat;
394
+ }
395
+
396
+ input[type="checkbox"]:checked::before {
397
+ color: #fff;
398
+ color: var(--white);
399
+ display: block;
400
+ -webkit-transform: scale(1);
401
+ transform: scale(1);
402
+ -webkit-transition: -webkit-transform 0.2s ease-out;
403
+ transition: -webkit-transform 0.2s ease-out;
404
+ transition: transform 0.2s ease-out;
405
+ transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
406
+ }
407
+
408
+ select {
409
+ -webkit-appearance: none;
410
+ -moz-appearance: none;
411
+ appearance: none;
412
+ background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><path d="M1.254 2.518a.904.904 0 0 1 0-1.257.85.85 0 0 1 1.225 0l4.512 4.632 4.511-4.632a.85.85 0 0 1 1.225 0 .904.904 0 0 1 0 1.257L7.621 7.761a.848.848 0 0 1-.63.259.849.849 0 0 1-.631-.259L1.254 2.518z" fill="gray"/></svg>') no-repeat;
413
+ background: var(--theme-background-white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><path d="M1.254 2.518a.904.904 0 0 1 0-1.257.85.85 0 0 1 1.225 0l4.512 4.632 4.511-4.632a.85.85 0 0 1 1.225 0 .904.904 0 0 1 0 1.257L7.621 7.761a.848.848 0 0 1-.63.259.849.849 0 0 1-.631-.259L1.254 2.518z" fill="gray"/></svg>') no-repeat;
414
+ background-position: top 1em right 0;
415
+ background-size: 1.7em;
416
+ padding-right: 2.8em;
417
+ border-radius: 3px;
418
+ border-radius: var(--theme-border-radius);
419
+ width: auto;
420
+ }
421
+
422
+ @-moz-document url-prefix() {
423
+ select {
424
+ padding-top: 0.438em;
425
+ padding-bottom: 0.438em;
426
+ }
427
+ }
428
+
429
+ select:focus {
430
+ outline: none;
431
+ }
432
+
433
+ select:-moz-focusring {
434
+ color: transparent;
435
+ text-shadow: 0 0 0 #000;
436
+ }
437
+
438
+ label.required::before {
439
+ content: '✱';
440
+ color: #d63626;
441
+ color: var(--red);
442
+ font-weight: 700;
443
+ padding-right: 0.5em;
444
+ padding-right: var(--space-xs);
445
+ position: absolute;
446
+ left: 0;
447
+ -webkit-transform: translateX(-100%);
448
+ transform: translateX(-100%);
449
+ }
450
+
451
+ a.button,
452
+ a.button:focus,
453
+ a.button:active,
454
+ a.button:visited,
455
+ button.button,
456
+ button.button:focus,
457
+ button.button:active,
458
+ button.button:visited,
459
+ input[type="submit"],
460
+ input[type="submit"]:focus,
461
+ input[type="submit"]:active,
462
+ input[type="submit"]:visited,
463
+ input[type="button"],
464
+ input[type="button"]:focus,
465
+ input[type="button"]:active,
466
+ input[type="button"]:visited {
467
+ display: inline-block;
468
+ padding: 0.5em 2em;
469
+ padding: var(--space-xs) var(--space-l);
470
+ color: #fff;
471
+ color: var(--theme-light-text);
472
+ background-color: #0053b3;
473
+ background-color: var(--theme-primary);
474
+ border-radius: 3px;
475
+ border-radius: var(--theme-border-radius);
476
+ border: 0;
477
+ font-family: "Source Sans Pro", Arial, sans-serif;
478
+ font-size: 1em;
479
+ font-size: var(--space-s);
480
+ position: relative;
481
+ top: 0;
482
+ overflow: hidden;
483
+ text-decoration: none;
484
+ cursor: pointer;
485
+ width: auto;
486
+ }
487
+
488
+ a.button:hover,
489
+ button.button:hover,
490
+ input[type="submit"]:hover,
491
+ input[type="button"]:hover {
492
+ background: #003b80;
493
+ background: var(--theme-secondary-darken);
494
+ }
495
+
496
+ a.button:active,
497
+ button.button:active,
498
+ input[type="submit"]:hover,
499
+ input[type="button"]:hover {
500
+ -webkit-transform: translateY(1px);
501
+ transform: translateY(1px);
502
+ }
503
+
504
+ button::-moz-focus-inner {
505
+ border: 0;
506
+ }
507
+
508
+ a.button-outline,
509
+ a.button-outline:focus,
510
+ a.button-outline:active,
511
+ a.button-outline:visited,
512
+ button.button-outline,
513
+ button.button-outline:focus,
514
+ button.button-outline:active,
515
+ button.button-outline:visited {
516
+ display: inline-block;
517
+ padding: 0.5em 2em;
518
+ padding: var(--space-xs) var(--space-l);
519
+ border-radius: 3px;
520
+ border-radius: var(--theme-border-radius);
521
+ font-family: "Source Sans Pro", Arial, sans-serif;
522
+ font-size: 1em;
523
+ font-size: var(--space-s);
524
+ position: relative;
525
+ top: 0;
526
+ overflow: hidden;
527
+ text-decoration: none;
528
+ background: transparent;
529
+ border: 1px solid #fff;
530
+ border: 1px solid var(--white);
531
+ color: #fff;
532
+ color: var(--white);
533
+ }
534
+
535
+ a.button-outline:hover,
536
+ button.button-outline:hover,
537
+ input[type="submit"].button-outline:hover,
538
+ input[type="button"].button-outline:hover {
539
+ border-color: #c9d3df;
540
+ border-color: var(--light-grey);
541
+ color: #c9d3df;
542
+ color: var(--light-grey);
543
+ }
544
+
545
+ .button-outline.primary,
546
+ a.button-outline.primary {
547
+ border-color: #0053b3;
548
+ border-color: var(--blue);
549
+ color: #0053b3;
550
+ color: var(--blue);
551
+ }
552
+
553
+ .button-outline.primary:hover,
554
+ .button-outline.primary:active {
555
+ border-color: #003b80;
556
+ border-color: var(--dark-blue);
557
+ color: #003b80;
558
+ color: var(--dark-blue);
559
+ }
560
+
561
+ .button-outline.warning,
562
+ a.button-outline.warning {
563
+ border-color: #d63626;
564
+ border-color: var(--red);
565
+ color: #d63626;
566
+ color: var(--red);
567
+ }
568
+
569
+ .button-outline.warning:hover,
570
+ .button-outline.warning:active {
571
+ border-color: #ab2b1e;
572
+ border-color: var(--dark-red);
573
+ color: #ab2b1e;
574
+ color: var(--dark-red);
575
+ }
576
+
577
+ .button-outline.secondary,
578
+ a.button-outline.secondary {
579
+ border-color: #53657d;
580
+ border-color: var(--darker-grey);
581
+ color: #53657d;
582
+ color: var(--darker-grey);
583
+ }
584
+
585
+ .button-outline.secondary:hover,
586
+ .button-outline.secondary:active {
587
+ border-color: #26353f;
588
+ border-color: var(--darkest-grey);
589
+ color: #26353f;
590
+ color: var(--theme-dark-text);
591
+ }
592
+
593
+ a.button.small,
594
+ button.button.small,
595
+ input[type="submit"].small,
596
+ input[type="button"].small,
597
+ a.button-outline.small,
598
+ button.button-outline.small {
599
+ font-size: 0.825em;
600
+ padding: 0.25em 1em;
601
+ }
602
+
603
+ a.button.large,
604
+ button.button.large,
605
+ input[type="submit"].large,
606
+ input[type="button"].large,
607
+ a.button-outline.large,
608
+ button.button-outline.large {
609
+ font-size: 1.25em;
610
+ }
611
+
612
+ .button.warning,
613
+ a.button.warning {
614
+ background-color: #d63626;
615
+ background-color: var(--red);
616
+ }
617
+
618
+ .button.warning:hover,
619
+ .button.warning:active {
620
+ background-color: #ab2b1e;
621
+ background-color: var(--dark-red);
622
+ }
623
+
624
+ .button.warning-light,
625
+ a.button.warning-light {
626
+ background-color: #ff9947;
627
+ background-color: var(--orange);
628
+ }
629
+
630
+ .button.warning-light:hover,
631
+ .button.warning-light:active {
632
+ background-color: #cc5c00;
633
+ background-color: var(--dark-orange);
634
+ }
635
+
636
+ .button.secondary,
637
+ a.button.secondary {
638
+ background-color: #53657d;
639
+ background-color: var(--darker-grey);
640
+ }
641
+
642
+ .button.secondary:hover,
643
+ .button.secondary:active {
644
+ background-color: #26353f;
645
+ background-color: var(--darkest-grey);
646
+ }
647
+
648
+ .button + .button,
649
+ .button-outline + .button-outline {
650
+ margin-left: 1em;
651
+ }
652
+
653
+ @media (max-width: 399px) {
654
+ a.button,
655
+ button.button,
656
+ input[type="submit"],
657
+ input[type="button"] {
658
+ width: 100%;
659
+ }
660
+
661
+ .button + .button,
662
+ .button-outline + .button-outline {
663
+ margin-top: 1em;
664
+ margin-left: 0;
665
+ }
666
+ }
667
+
668
+ .table {
669
+ background: #fff;
670
+ background: var(--theme-background-white);
671
+ border: 1px solid #c9d3df;
672
+ border: 1px solid var(--theme-border-lighter);
673
+ border-left: 0;
674
+ border-right: 0;
675
+ border-radius: 2px;
676
+ position: relative;
677
+ width: 100%;
678
+ border-collapse: collapse;
679
+ }
680
+
681
+ .table td,
682
+ .table th {
683
+ padding: 1em;
684
+ padding: var(--space-s);
685
+ text-align: left;
686
+ }
687
+
688
+ .table td {
689
+ border-top: 1px solid #ebeff3;
690
+ border-top: 1px solid var(--lighter-grey);
691
+ }
692
+
693
+ .table thead th {
694
+ background: #fafbfc;
695
+ background: var(--lightest-grey);
696
+ border-bottom: 1px solid #c9d3df;
697
+ border-bottom: 1px solid var(--theme-border-lighter);
698
+ font-size: 0.875em;
699
+ font-weight: 700;
700
+ text-transform: uppercase;
701
+ }
702
+
703
+ .table thead th.ascending::after {
704
+ font-size: 0.75em;
705
+ content: '▲';
706
+ margin-left: 0.5em;
707
+ margin-left: var(--space-xs);
708
+ }
709
+
710
+ .table thead th.descending::after {
711
+ font-size: 0.75em;
712
+ content: '▼';
713
+ margin-left: 0.5em;
714
+ margin-left: var(--space-xs);
715
+ }
716
+
717
+ .table tr:hover {
718
+ background: #fafbfc;
719
+ background: var(--lightest-grey);
720
+ }
721
+
722
+ .table__filter {
723
+ margin-bottom: 1em;
724
+ margin-bottom: var(--space-s);
725
+ max-width: 20em;
726
+ float: right;
727
+ }
728
+
729
+ .icon {
730
+ display: inline-block;
731
+ width: 1em;
732
+ height: 1em;
733
+ stroke-width: 0;
734
+ stroke: currentColor;
735
+ fill: currentColor;
736
+ font-size: 16px;
737
+ }
738
+
739
+ #icon-search {
740
+ fill: #adb9c9;
741
+ fill: var(--grey);
742
+ }
743
+
744
+ .label-list {
745
+ padding: 0;
746
+ margin: 0;
747
+ }
748
+
749
+ .label {
750
+ background-color: #ebeff3;
751
+ background-color: var(--lighter-grey);
752
+ border-radius: 3px;
753
+ border-radius: var(--theme-border-radius);
754
+ display: inline-block;
755
+ padding: 0.3em 0.8em;
756
+ margin: 0.25em;
757
+ font-size: 0.875em;
758
+ }
759
+
760
+ .label a {
761
+ text-decoration: none;
762
+ color: #26353f;
763
+ color: var(--theme-dark-text);
764
+ }
765
+
766
+ .label--active {
767
+ background-color: #0053b3;
768
+ background-color: var(--theme-primary);
769
+ color: #fff;
770
+ color: var(--white);
771
+ }
772
+
773
+ .label--inactive {
774
+ background-color: #fff;
775
+ background-color: var(--white);
776
+ border: 1px solid #adb9c9;
777
+ border: 1px solid var(--theme-border);
778
+ color: #53657d;
779
+ color: var(--darker-grey);
780
+ }
781
+
782
+ .label--inactive a {
783
+ color: #53657d;
784
+ color: var(--darker-grey);
785
+ background: 0;
786
+ }
787
+
788
+ /* recurring components */
789
+ form {
790
+ max-width: 35em;
791
+ margin: 0 auto;
792
+ }
793
+
794
+ label,
795
+ legend {
796
+ display: block;
797
+ color: #26353f;
798
+ color: var(--theme-dark-text);
799
+ }
800
+
801
+ legend {
802
+ margin-bottom: 0.5em;
803
+ margin-bottom: var(--space-xs);
804
+ }
805
+
806
+ label.label-inline {
807
+ display: inline;
808
+ color: #1c1c1c;
809
+ color: var(--black);
810
+ }
811
+
812
+ .label-inline + input[type=radio],
813
+ .label-inline + input[type=checkbox] {
814
+ margin-left: 1.5em;
815
+ margin-left: var(--space-m);
816
+ -ms-flex-negative: 0;
817
+ flex-shrink: 0;
818
+ }
819
+
820
+ .form__group {
821
+ position: relative;
822
+ display: block;
823
+ }
824
+
825
+ .form__group + .form__group {
826
+ margin-top: 2em;
827
+ margin-top: var(--space-l);
828
+ }
829
+
830
+ fieldset {
831
+ border: none;
832
+ margin: 0;
833
+ padding: 0;
834
+ width: 100%;
835
+ display: -webkit-box;
836
+ display: -ms-flexbox;
837
+ display: flex;
838
+ -webkit-box-align: center;
839
+ -ms-flex-align: center;
840
+ align-items: center;
841
+ }
842
+
843
+ .overlay-button {
844
+ position: absolute;
845
+ right: 2em;
846
+ right: var(--space-l);
847
+ top: calc(1px + 0.8rem);
848
+ background: 0;
849
+ border: 0;
850
+ width: 1rem;
851
+ height: 1rem;
852
+ }
853
+
854
+ .search__group {
855
+ position: relative;
856
+ }
857
+
858
+ .overlayed-button .icon-search {
859
+ height: 15px;
860
+ width: 15px;
861
+ }
862
+
863
+ .input__group {
864
+ display: -webkit-box;
865
+ display: -ms-flexbox;
866
+ display: flex;
867
+ -webkit-box-orient: horizontal;
868
+ -webkit-box-direction: normal;
869
+ -ms-flex-direction: row;
870
+ flex-direction: row;
871
+ }
872
+
873
+ .input__group .icon-button,
874
+ .input__group .icon-button:active {
875
+ margin-left: 1em;
876
+ margin-left: var(--space-s);
877
+ padding: 0 0.8em;
878
+ }
879
+
880
+ .input__group .icon-button .icon {
881
+ width: 16px;
882
+ height: 16px;
883
+ }
884
+
885
+ .input__group .button {
886
+ -ms-flex-negative: 0;
887
+ flex-shrink: 0;
888
+ margin-left: 1em;
889
+ margin-left: var(--space-s);
890
+ }
891
+
892
+ @media (max-width: 399px) {
893
+ .input__group {
894
+ -webkit-box-orient: vertical;
895
+ -webkit-box-direction: normal;
896
+ -ms-flex-direction: column;
897
+ flex-direction: column;
898
+ }
899
+
900
+ .input__group .button {
901
+ margin-left: 0;
902
+ margin-top: 1em;
903
+ margin-top: var(--space-s);
904
+ }
905
+ }
906
+
907
+ .card {
908
+ background: #fff;
909
+ background: var(--theme-background-white);
910
+ border-radius: 2px;
911
+ -webkit-box-shadow: 0 1px 2px rgba(201, 211, 223, 0.2);
912
+ box-shadow: 0 1px 2px rgba(201, 211, 223, 0.2);
913
+ -webkit-box-shadow: var(--theme-box-shadow);
914
+ box-shadow: var(--theme-box-shadow);
915
+ position: relative;
916
+ overflow: hidden;
917
+ display: -webkit-box;
918
+ display: -ms-flexbox;
919
+ display: flex;
920
+ -webkit-box-flex: 1;
921
+ -ms-flex: 1;
922
+ flex: 1;
923
+ -webkit-box-orient: vertical;
924
+ -webkit-box-direction: normal;
925
+ -ms-flex-direction: column;
926
+ flex-direction: column;
927
+ width: 100%;
928
+ border: 1px solid #c9d3df;
929
+ border: 1px solid var(--theme-border-lighter);
930
+ }
931
+
932
+ .row .card + .card {
933
+ margin-left: 1.5em;
934
+ margin-left: var(--space-m);
935
+ }
936
+
937
+ @media (max-width: 749px) {
938
+ .row > .card {
939
+ margin: 0;
940
+ }
941
+
942
+ .row > .card + .card {
943
+ margin-left: 0;
944
+ margin-top: 1.5em;
945
+ margin-top: var(--space-m);
946
+ }
947
+ }
948
+
949
+ .card__cover {
950
+ height: 250px;
951
+ width: 100%;
952
+ overflow: hidden;
953
+ position: relative;
954
+ display: -webkit-box;
955
+ display: -ms-flexbox;
956
+ display: flex;
957
+ -webkit-box-align: center;
958
+ -ms-flex-align: center;
959
+ align-items: center;
960
+ -webkit-box-pack: center;
961
+ -ms-flex-pack: center;
962
+ justify-content: center;
963
+ background-color: #0053b3;
964
+ background-color: var(--theme-background-color);
965
+ }
966
+
967
+ .card__cover img {
968
+ -o-object-fit: cover;
969
+ object-fit: cover; /* will not work on IE and Edge < 16 */
970
+ height: 100%;
971
+ width: 100%;
972
+ }
973
+
974
+ .card__content {
975
+ padding: 1.5em;
976
+ padding: var(--space-m);
977
+ -webkit-box-flex: 1;
978
+ -ms-flex-positive: 1;
979
+ flex-grow: 1;
980
+ }
981
+
982
+ .card__content h3 {
983
+ margin: 0;
984
+ }
985
+
986
+ .card__content .card__meta {
987
+ color: #53657d;
988
+ color: var(--darker-grey);
989
+ }
990
+
991
+ .card__content .card__meta time::after {
992
+ content: " • ";
993
+ }
994
+
995
+ .card__content :last-child {
996
+ margin-bottom: 0;
997
+ }
998
+
999
+ .card__extra {
1000
+ border-top: 1px solid #adb9c9;
1001
+ border-top: 1px solid var(--theme-border);
1002
+ padding: 1em;
1003
+ padding: var(--space-s);
1004
+ }
1005
+
1006
+ .panel {
1007
+ background: #fff;
1008
+ background: var(--theme-background-white);
1009
+ border-radius: 3px;
1010
+ border-radius: var(--theme-border-radius);
1011
+ -webkit-box-shadow: 0 1px 2px rgba(201, 211, 223, 0.2);
1012
+ box-shadow: 0 1px 2px rgba(201, 211, 223, 0.2);
1013
+ -webkit-box-shadow: var(--theme-box-shadow);
1014
+ box-shadow: var(--theme-box-shadow);
1015
+ padding: 1.5em;
1016
+ padding: var(--space-m);
1017
+ position: relative;
1018
+ border: 1px solid #c9d3df;
1019
+ border: 1px solid var(--theme-border-lighter);
1020
+ }
1021
+
1022
+ .panel + * {
1023
+ margin-top: 1.5em;
1024
+ margin-top: var(--space-m);
1025
+ }
1026
+
1027
+ .panel > :last-child {
1028
+ margin-bottom: 0;
1029
+ }
1030
+
1031
+ .panel__header::after {
1032
+ content: '';
1033
+ display: block;
1034
+ width: calc(100% + 1.5em * 2);
1035
+ width: calc(100% + var(--space-m) * 2);
1036
+ position: relative;
1037
+ left: -1.5em;
1038
+ border-bottom: 1px solid #c9d3df;
1039
+ border-bottom: 1px solid var(--theme-border-lighter);
1040
+ margin: 1em 0 1.5em;
1041
+ margin: var(--space-s) 0 var(--space-m);
1042
+ }
1043
+
1044
+ .panel__header h3 {
1045
+ display: inline-block;
1046
+ margin: 0;
1047
+ }
1048
+
1049
+ .panel__header-extra {
1050
+ margin-left: 1em;
1051
+ margin-left: var(--space-s);
1052
+ color: #53657d;
1053
+ color: var(--theme-label-text);
1054
+ display: inline-block;
1055
+ }
1056
+
1057
+ @media (max-width: 549px) {
1058
+ .panel__header-extra {
1059
+ margin: 0;
1060
+ }
1061
+ }
1062
+
1063
+ .dropdown {
1064
+ position: relative;
1065
+ display: inline-block;
1066
+ }
1067
+
1068
+ .dropdown-content {
1069
+ display: none;
1070
+ position: absolute;
1071
+ background-color: #fff;
1072
+ background-color: var(--white);
1073
+ min-width: 110px;
1074
+ text-align: center;
1075
+ top: 2em;
1076
+ top: var(--space-l);
1077
+ right: 0;
1078
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
1079
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
1080
+ z-index: 1;
1081
+ }
1082
+
1083
+ .dropdown-content a {
1084
+ color: black;
1085
+ padding: 12px 16px;
1086
+ text-decoration: none;
1087
+ display: block;
1088
+ }
1089
+
1090
+ .dropdown-content a:hover {
1091
+ background-color: #c9d3df;
1092
+ background-color: var(--light-grey);
1093
+ }
1094
+
1095
+ .dropdown:hover .dropdown-content {
1096
+ display: block;
1097
+ }
1098
+
1099
+ .modal__backdrop {
1100
+ position: fixed;
1101
+ top: 0;
1102
+ left: 0;
1103
+ background: rgba(0, 0, 0, 0.5);
1104
+ height: 100%;
1105
+ width: 100%;
1106
+ -webkit-box-pack: center;
1107
+ -ms-flex-pack: center;
1108
+ justify-content: center;
1109
+ -webkit-box-align: center;
1110
+ -ms-flex-align: center;
1111
+ align-items: center;
1112
+ display: none;
1113
+ z-index: 10;
1114
+ }
1115
+
1116
+ /* no js modal */
1117
+ .modal__backdrop:target {
1118
+ display: -webkit-box;
1119
+ display: -ms-flexbox;
1120
+ display: flex;
1121
+ }
1122
+
1123
+ .modal {
1124
+ border-radius: 3px;
1125
+ border-radius: var(--theme-border-radius);
1126
+ -webkit-box-shadow: 0 1px 2px rgba(201, 211, 223, 0.2);
1127
+ box-shadow: 0 1px 2px rgba(201, 211, 223, 0.2);
1128
+ -webkit-box-shadow: var(--theme-box-shadow);
1129
+ box-shadow: var(--theme-box-shadow);
1130
+ background: #fff;
1131
+ background: var(--white);
1132
+ padding: 1.5em;
1133
+ padding: var(--space-m);
1134
+ max-width: 32em;
1135
+ }
1136
+
1137
+ .modal > :first-child {
1138
+ margin-top: 0;
1139
+ }
1140
+
1141
+ .modal .button__group {
1142
+ display: -webkit-box;
1143
+ display: -ms-flexbox;
1144
+ display: flex;
1145
+ -webkit-box-pack: justify;
1146
+ -ms-flex-pack: justify;
1147
+ justify-content: space-between;
1148
+ margin-top: 1.5em;
1149
+ margin-top: var(--space-m);
1150
+ }
1151
+
1152
+ .modal .button__group .button {
1153
+ margin: 0;
1154
+ }
1155
+
1156
+ .modal .button__group .button + .button {
1157
+ margin-left: 1em;
1158
+ }
1159
+
1160
+ .notification {
1161
+ background: #b4e1fa;
1162
+ background: var(--theme-info-bg);
1163
+ border: 1px solid #006be6;
1164
+ border: 1px solid var(--theme-info-border);
1165
+ border-radius: 3px;
1166
+ border-radius: var(--theme-border-radius);
1167
+ padding: 1em;
1168
+ padding: var(--space-s);
1169
+ margin-bottom: 1em;
1170
+ position: relative;
1171
+ }
1172
+
1173
+ .notification .close {
1174
+ border: 0;
1175
+ background: 0;
1176
+ color: currentColor;
1177
+ position: absolute;
1178
+ right: 1em;
1179
+ right: var(--space-s);
1180
+ }
1181
+
1182
+ .notification .icon {
1183
+ fill: currentColor;
1184
+ width: 20px;
1185
+ height: 20px;
1186
+ }
1187
+
1188
+ .notification.closable {
1189
+ padding-right: 3em;
1190
+ padding-right: var(--space-xl);
1191
+ }
1192
+
1193
+ .notification.full-width {
1194
+ width: 100%;
1195
+ margin-bottom: 0;
1196
+ text-align: center;
1197
+ border: 0;
1198
+ }
1199
+
1200
+ .notification.full-width.closable .close {
1201
+ right: unset;
1202
+ }
1203
+
1204
+ .notification.success {
1205
+ background: #daf5e7;
1206
+ background: var(--theme-success-bg);
1207
+ border-color: #03bd5b;
1208
+ border-color: var(--theme-success-border);
1209
+ }
1210
+
1211
+ .notification.warning {
1212
+ background: #fff0e4;
1213
+ background: var(--theme-warning-bg);
1214
+ border-color: #ff9947;
1215
+ border-color: var(--theme-warning-border);
1216
+ }
1217
+
1218
+ .notification.error {
1219
+ background: rgba(239,172,166,0.45882);
1220
+ background: var(--theme-error-bg);
1221
+ border-color: #d63626;
1222
+ border-color: var(--theme-error-border);
1223
+ }
1224
+
1225
+ .tile {
1226
+ display: -webkit-box;
1227
+ display: -ms-flexbox;
1228
+ display: flex;
1229
+ -webkit-box-orient: vertical;
1230
+ -webkit-box-direction: normal;
1231
+ -ms-flex-direction: column;
1232
+ flex-direction: column;
1233
+ -webkit-box-pack: center;
1234
+ -ms-flex-pack: center;
1235
+ justify-content: center;
1236
+ -webkit-box-align: center;
1237
+ -ms-flex-align: center;
1238
+ align-items: center;
1239
+ background-color: #fff;
1240
+ background-color: var(--theme-background-white);
1241
+ width: 100%;
1242
+ padding: 1em;
1243
+ padding: var(--space-s);
1244
+ -webkit-transform: none;
1245
+ transform: none;
1246
+ -webkit-transition: all 0.1s ease-in;
1247
+ transition: all 0.1s ease-in;
1248
+ }
1249
+
1250
+ .tile:hover {
1251
+ -webkit-transform: scale(1.03);
1252
+ transform: scale(1.03);
1253
+ }
1254
+
1255
+ .tile-colored {
1256
+ background-color: #0053b3;
1257
+ background-color: var(--theme-background-color);
1258
+ color: #fff;
1259
+ color: var(--theme-light-text);
1260
+ }
1261
+
1262
+ .tile h3 {
1263
+ margin: 0;
1264
+ }
1265
+
1266
+ .tile__icon {
1267
+ height: 2em;
1268
+ height: var(--space-l);
1269
+ }
1270
+ /* stylelint-disable declaration-block-no-redundant-longhand-properties */
1271
+ .pagination {
1272
+ display: -webkit-box;
1273
+ display: -ms-flexbox;
1274
+ display: flex;
1275
+ -webkit-box-orient: horizontal;
1276
+ -webkit-box-direction: normal;
1277
+ -ms-flex-direction: row;
1278
+ flex-direction: row;
1279
+ -webkit-box-pack: end;
1280
+ -ms-flex-pack: end;
1281
+ justify-content: end;
1282
+ -webkit-box-align: center;
1283
+ -ms-flex-align: center;
1284
+ align-items: center;
1285
+ -ms-flex-wrap: wrap;
1286
+ flex-wrap: wrap;
1287
+ margin-top: 1.5em;
1288
+ margin-top: var(--space-m);
1289
+ }
1290
+ /* stylelint-enable declaration-block-no-redundant-longhand-properties */
1291
+ .pagination__display-group {
1292
+ margin-left: 1.5em;
1293
+ margin-left: var(--space-m);
1294
+ }
1295
+
1296
+ .pagination__display-label {
1297
+ display: inline;
1298
+ }
1299
+
1300
+ select.pagination__display {
1301
+ margin-left: 0.5em;
1302
+ margin-left: var(--space-xs);
1303
+ padding-top: 0.25em;
1304
+ padding-top: var(--space-xxs);
1305
+ padding-bottom: 0.25em;
1306
+ padding-bottom: var(--space-xxs);
1307
+ }
1308
+
1309
+ .pagination__count {
1310
+ margin-left: 1.5em;
1311
+ margin-left: var(--space-m);
1312
+ }
1313
+
1314
+ .pagination__pages {
1315
+ list-style-type: none;
1316
+ margin: 0;
1317
+ padding: 0;
1318
+ overflow: hidden;
1319
+ display: -webkit-box;
1320
+ display: -ms-flexbox;
1321
+ display: flex;
1322
+ -webkit-box-pack: end;
1323
+ -ms-flex-pack: end;
1324
+ justify-content: end;
1325
+ margin-left: 1.5em;
1326
+ margin-left: var(--space-m);
1327
+ }
1328
+
1329
+ .pagination__pages li a {
1330
+ color: #0053b3;
1331
+ color: var(--theme-primary);
1332
+ background-color: #fff;
1333
+ background-color: var(--theme-background-white);
1334
+ margin: 0 0.25em;
1335
+ margin: 0 var(--space-xxs);
1336
+ padding: 0.25em 0.5em;
1337
+ padding: var(--space-xxs) var(--space-xs);
1338
+ border-radius: 3px;
1339
+ border-radius: var(--theme-border-radius);
1340
+ font-weight: 700;
1341
+ pointer-events: inherit;
1342
+ text-decoration: none;
1343
+ display: block;
1344
+ }
1345
+
1346
+ .pagination__pages li a:hover {
1347
+ background-color: #b4e1fa;
1348
+ background-color: var(--lighter-blue);
1349
+ }
1350
+
1351
+ .pagination__pages li.active a {
1352
+ color: #fff;
1353
+ color: var(--theme-light-text);
1354
+ background-color: #0053b3;
1355
+ background-color: var(--theme-background-color);
1356
+ }
1357
+
1358
+ .pagination__pages li.disabled a {
1359
+ color: #8393a7;
1360
+ color: var(--dark-grey);
1361
+ background-color: #fafbfc;
1362
+ background-color: var(--lightest-grey);
1363
+ pointer-events: none;
1364
+ }
1365
+
1366
+ /* larger components */
1367
+ .container {
1368
+ position: relative;
1369
+ width: 100%;
1370
+ max-width: 1200px;
1371
+ margin: 0 auto;
1372
+ padding: 0 20px;
1373
+ }
1374
+
1375
+ .container.container-medium {
1376
+ max-width: 750px;
1377
+ }
1378
+
1379
+ .container.container-small {
1380
+ max-width: 550px;
1381
+ }
1382
+
1383
+ .container.container-full {
1384
+ max-width: none;
1385
+ }
1386
+
1387
+ .article__container {
1388
+ max-width: 35em;
1389
+ }
1390
+
1391
+ @media (min-width: 400px) {
1392
+ .container {
1393
+ width: 85%;
1394
+ padding: 0;
1395
+ }
1396
+ }
1397
+
1398
+ @media (min-width: 550px) {
1399
+ .container {
1400
+ width: 80%;
1401
+ }
1402
+ }
1403
+
1404
+ .navbar {
1405
+ width: 100%;
1406
+ background: #fff;
1407
+ background: var(--theme-background-white);
1408
+ z-index: 100;
1409
+ }
1410
+
1411
+ .nav-fixed {
1412
+ position: fixed;
1413
+ top: 0;
1414
+ }
1415
+
1416
+ .navbar__container {
1417
+ display: -webkit-box;
1418
+ display: -ms-flexbox;
1419
+ display: flex;
1420
+ -webkit-box-pack: justify;
1421
+ -ms-flex-pack: justify;
1422
+ justify-content: space-between;
1423
+ -ms-flex-wrap: wrap;
1424
+ flex-wrap: wrap;
1425
+ -webkit-box-align: center;
1426
+ -ms-flex-align: center;
1427
+ align-items: center;
1428
+ padding: 1em;
1429
+ padding: var(--space-s);
1430
+ }
1431
+
1432
+ .navbar__home {
1433
+ height: 40px;
1434
+ }
1435
+
1436
+ .navbar__logo {
1437
+ height: 100%;
1438
+ }
1439
+
1440
+ .nav__links {
1441
+ display: inline-block;
1442
+ margin: 0;
1443
+ padding: 0;
1444
+ list-style-type: none;
1445
+ }
1446
+
1447
+ .nav__item {
1448
+ padding: 0;
1449
+ display: inline-block;
1450
+ }
1451
+
1452
+ .nav__item a,
1453
+ .nav__item .dropdown {
1454
+ text-decoration: none;
1455
+ color: #1c1c1c;
1456
+ color: var(--black);
1457
+ padding: 0.4em 0.8em;
1458
+ border-radius: 3px;
1459
+ }
1460
+
1461
+ .nav__links a::after {
1462
+ content: none;
1463
+ }
1464
+
1465
+ .nav__item a:hover,
1466
+ .nav__item .dropdown:hover {
1467
+ background: #ebeff3;
1468
+ background: var(--lighter-grey);
1469
+ }
1470
+
1471
+ .nav__item a.active {
1472
+ background: #0053b3;
1473
+ background: var(--theme-primary);
1474
+ color: #fff;
1475
+ color: var(--white);
1476
+ }
1477
+
1478
+ a.navbar__home {
1479
+ font-family: 'Evolventa';
1480
+ display: -webkit-box;
1481
+ display: -ms-flexbox;
1482
+ display: flex;
1483
+ -webkit-box-align: center;
1484
+ -ms-flex-align: center;
1485
+ align-items: center;
1486
+ color: #26353f;
1487
+ color: var(--theme-dark-text);
1488
+ letter-spacing: 0.05em;
1489
+ text-decoration: none;
1490
+ }
1491
+
1492
+ .navbar__home img {
1493
+ vertical-align: middle;
1494
+ }
1495
+
1496
+ .navbar__logo {
1497
+ margin-right: 0.8em;
1498
+ }
1499
+
1500
+ .navbar__gouvfr {
1501
+ height: 100%;
1502
+ }
1503
+
1504
+ span.navbar__domain {
1505
+ font-weight: 400;
1506
+ color: #26353f;
1507
+ color: var(--theme-dark-text);
1508
+ -webkit-padding-after: 3px; /* fix the broken line-height in logo */
1509
+ }
1510
+
1511
+ @media (max-width: 749px) {
1512
+ .navbar__container {
1513
+ -webkit-box-orient: vertical;
1514
+ -webkit-box-direction: normal;
1515
+ -ms-flex-direction: column;
1516
+ flex-direction: column;
1517
+ -webkit-box-align: start;
1518
+ -ms-flex-align: start;
1519
+ align-items: flex-start;
1520
+ }
1521
+
1522
+ .nav__links {
1523
+ padding-top: 1em;
1524
+ padding-top: var(--space-s);
1525
+ }
1526
+ }
1527
+
1528
+ .hero {
1529
+ width: 100%;
1530
+ background: #fff;
1531
+ background: var(--theme-background-white);
1532
+ }
1533
+
1534
+ .hero-color {
1535
+ background: #0053b3;
1536
+ background: var(--theme-background-color);
1537
+ }
1538
+
1539
+ .hero__container {
1540
+ min-height: 25em;
1541
+ display: -webkit-box;
1542
+ display: -ms-flexbox;
1543
+ display: flex;
1544
+ -webkit-box-orient: vertical;
1545
+ -webkit-box-direction: normal;
1546
+ -ms-flex-direction: column;
1547
+ flex-direction: column;
1548
+ -webkit-box-pack: center;
1549
+ -ms-flex-pack: center;
1550
+ justify-content: center;
1551
+ -webkit-box-align: center;
1552
+ -ms-flex-align: center;
1553
+ align-items: center;
1554
+ padding: 2em;
1555
+ padding: var(--space-l);
1556
+ max-width: 1200px;
1557
+ margin: 0 auto;
1558
+ }
1559
+
1560
+ .hero h1 {
1561
+ margin-bottom: 0;
1562
+ }
1563
+
1564
+ .hero-color h1 {
1565
+ color: #fff;
1566
+ color: var(--theme-light-text);
1567
+ }
1568
+
1569
+ .hero p {
1570
+ margin: 1em auto;
1571
+ margin: var(--space-s) auto;
1572
+ color: #26353f;
1573
+ color: var(--theme-dark-text);
1574
+ font-size: 1.5em;
1575
+ }
1576
+
1577
+ .hero-color p {
1578
+ color: #fff;
1579
+ color: var(--theme-light-text);
1580
+ }
1581
+
1582
+ .footer {
1583
+ background: #1c1c1c;
1584
+ background: var(--theme-background-dark);
1585
+ color: #fff;
1586
+ color: var(--white);
1587
+ padding: 2em 0;
1588
+ padding: var(--space-l) 0;
1589
+ }
1590
+
1591
+ .footer a:hover {
1592
+ background: 0;
1593
+ }
1594
+
1595
+ .footer .container {
1596
+ display: -webkit-box;
1597
+ display: -ms-flexbox;
1598
+ display: flex;
1599
+ -webkit-box-orient: horizontal;
1600
+ -webkit-box-direction: normal;
1601
+ -ms-flex-flow: row wrap;
1602
+ flex-flow: row wrap;
1603
+ -webkit-box-pack: justify;
1604
+ -ms-flex-pack: justify;
1605
+ justify-content: space-between;
1606
+ }
1607
+
1608
+ .footer ul {
1609
+ list-style-type: none;
1610
+ padding: 0;
1611
+ }
1612
+
1613
+ .footer__social {
1614
+ margin-top: 1em;
1615
+ margin-top: var(--space-s);
1616
+ }
1617
+
1618
+ .footer__social li {
1619
+ display: inline;
1620
+ margin-right: 1em;
1621
+ margin-right: var(--space-s);
1622
+ }
1623
+
1624
+ .footer__social .icon {
1625
+ width: 35px;
1626
+ height: 35px;
1627
+ fill: #fff;
1628
+ fill: var(--white);
1629
+ }
1630
+
1631
+ .footer__links {
1632
+ margin: 0;
1633
+ line-height: 2em;
1634
+ line-height: var(--space-l);
1635
+ }
1636
+
1637
+ .footer__links h2 {
1638
+ margin-top: 0;
1639
+ margin-bottom: 0.5em;
1640
+ margin-bottom: var(--space-xs);
1641
+ }
1642
+
1643
+ .footer__links a {
1644
+ color: #fff;
1645
+ color: var(--white);
1646
+ text-decoration: none;
1647
+ }
1648
+
1649
+ .footer__links a:hover {
1650
+ background: #53657d;
1651
+ background: var(--darker-grey);
1652
+ }
1653
+
1654
+ .footer__logo {
1655
+ width: 300px;
1656
+ height: auto;
1657
+ }
1658
+
1659
+ .footer__logo img {
1660
+ max-height: 60px;
1661
+ }
1662
+
1663
+ @media (max-width: 999px) {
1664
+ .footer .container {
1665
+ -webkit-box-orient: vertical;
1666
+ -webkit-box-direction: normal;
1667
+ -ms-flex-direction: column;
1668
+ flex-direction: column;
1669
+ }
1670
+ }
1671
+
1672
+ .section {
1673
+ padding: 5em 0;
1674
+ }
1675
+
1676
+ .section-white {
1677
+ background-color: #fff;
1678
+ background-color: var(--theme-background-white);
1679
+ }
1680
+
1681
+ .section-grey {
1682
+ background-color: #ebeff3;
1683
+ background-color: var(--theme-background-grey);
1684
+ }
1685
+
1686
+ .section-dark {
1687
+ background-color: #1c1c1c;
1688
+ background-color: var(--theme-background-dark);
1689
+ color: #fff;
1690
+ }
1691
+
1692
+ .section-color {
1693
+ background-image: -webkit-gradient(linear, right top, left top, from(#0053b3), to(#003b80));
1694
+ background-image: linear-gradient(to left, #0053b3, #003b80);
1695
+ background-image: var(--theme-background-gradient);
1696
+ color: #fff;
1697
+ }
1698
+
1699
+ .section-color-dark {
1700
+ background-color: #00234d;
1701
+ background-color: var(--theme-background-color-dark);
1702
+ color: #fff;
1703
+ }
1704
+
1705
+ .section__title:first-child {
1706
+ margin-top: 0;
1707
+ margin-bottom: 0.5em;
1708
+ margin-bottom: var(--space-xs);
1709
+ }
1710
+
1711
+ .section__subtitle {
1712
+ margin: 0 auto;
1713
+ font-weight: 400;
1714
+ font-size: 1.25em;
1715
+ font-family: "Source Sans Pro", Arial, sans-serif;
1716
+ color: #53657d;
1717
+ color: var(--darker-grey);
1718
+ }
1719
+
1720
+ .section-dark .section__subtitle,
1721
+ .section-color .section__subtitle,
1722
+ .section-dark a,
1723
+ .section-color a {
1724
+ color: currentColor;
1725
+ }
1726
+
1727
+ .section-dark a:hover,
1728
+ .section-color a:hover {
1729
+ background: #53657d;
1730
+ background: var(--darker-grey);
1731
+ }
1732
+
1733
+ .section__title + .row,
1734
+ .section__subtitle + .row {
1735
+ margin-top: 3em;
1736
+ margin-top: var(--space-xl);
1737
+ }
1738
+
1739
+ .section__title,
1740
+ .section__subtitle {
1741
+ text-align: center;
1742
+ }
1743
+
1744
+ .section__title + .section__subtitle {
1745
+ margin-top: -var(--space-s);
1746
+ }
1747
+
1748
+ .article {
1749
+ text-rendering: optimizeLegibility;
1750
+ -webkit-font-smoothing: antialiased;
1751
+ -moz-osx-font-smoothing: grayscale;
1752
+ -moz-font-feature-settings: "liga" on;
1753
+ padding: 0;
1754
+ background: #fff;
1755
+ background: var(--white);
1756
+ color: #26353f;
1757
+ color: var(--theme-dark-text);
1758
+ line-height: 1.5;
1759
+ margin: 0 auto;
1760
+ }
1761
+
1762
+ .article__hero {
1763
+ height: 38vh;
1764
+ width: 100%;
1765
+ overflow: hidden;
1766
+ position: relative;
1767
+ display: -webkit-box;
1768
+ display: -ms-flexbox;
1769
+ display: flex;
1770
+ -webkit-box-align: center;
1771
+ -ms-flex-align: center;
1772
+ align-items: center;
1773
+ -webkit-box-pack: center;
1774
+ -ms-flex-pack: center;
1775
+ justify-content: center;
1776
+ }
1777
+
1778
+ .article__hero img {
1779
+ width: 100%;
1780
+ -webkit-filter: brightness(0.5);
1781
+ filter: brightness(0.5);
1782
+ position: absolute;
1783
+ z-index: 0;
1784
+ }
1785
+
1786
+ .article__hero .article__container {
1787
+ z-index: 10;
1788
+ -webkit-box-align: start;
1789
+ -ms-flex-align: start;
1790
+ align-items: start;
1791
+ width: 100%;
1792
+ }
1793
+
1794
+ .article__content {
1795
+ margin: 0;
1796
+ }
1797
+
1798
+ .article__content .article__container {
1799
+ margin: 0 auto;
1800
+ padding: 2em 0 calc(2em * 2);
1801
+ padding: var(--space-l) 0 calc(var(--space-l) * 2);
1802
+ }
1803
+
1804
+ .richtext + .article__author {
1805
+ margin-top: 1em;
1806
+ margin-top: var(--space-s);
1807
+ }
1808
+
1809
+ .article__author-list {
1810
+ padding-top: 1em;
1811
+ padding-top: var(--space-s);
1812
+ display: -webkit-box;
1813
+ display: -ms-flexbox;
1814
+ display: flex;
1815
+ -webkit-box-orient: horizontal;
1816
+ -webkit-box-direction: normal;
1817
+ -ms-flex-direction: row;
1818
+ flex-direction: row;
1819
+ -webkit-box-pack: justify;
1820
+ -ms-flex-pack: justify;
1821
+ justify-content: space-between;
1822
+ }
1823
+
1824
+ .article__author {
1825
+ display: inline-block;
1826
+ max-width: 270px;
1827
+ padding: 1em;
1828
+ padding: var(--space-s);
1829
+ font-size: 15px;
1830
+ }
1831
+
1832
+ .article__author + .article__author {
1833
+ margin-left: 1em;
1834
+ margin-left: var(--space-s);
1835
+ margin-top: 0;
1836
+ }
1837
+
1838
+ .article__author img {
1839
+ height: 32px;
1840
+ width: 32px;
1841
+ border-radius: 50%;
1842
+ display: inline-block;
1843
+ float: right;
1844
+ }
1845
+
1846
+ .article__author-info {
1847
+ display: inline-block;
1848
+ }
1849
+
1850
+ .article__author-name {
1851
+ font-weight: 700;
1852
+ }
1853
+
1854
+ .article__author-role {
1855
+ color: #53657d;
1856
+ color: var(--darker-grey);
1857
+ font-size: 0.9em;
1858
+ line-height: 0.8em;
1859
+ }
1860
+
1861
+ .article__author-description p:last-child {
1862
+ margin-bottom: 0;
1863
+ }
1864
+
1865
+ /* article list for blog and alike */
1866
+ .article__preview {
1867
+ margin: 0 auto;
1868
+ padding: 1.5em;
1869
+ padding: var(--space-m);
1870
+ }
1871
+
1872
+ .article__preview + .article__preview {
1873
+ margin-top: 2em;
1874
+ }
1875
+
1876
+ .article__preview .article__author {
1877
+ width: auto;
1878
+ padding: 0;
1879
+ margin-bottom: 1em;
1880
+ margin-bottom: var(--space-s);
1881
+ }
1882
+
1883
+ .article__preview .article__author img {
1884
+ float: none;
1885
+ vertical-align: middle;
1886
+ }
1887
+
1888
+ .article__preview img + .article__author-name {
1889
+ margin-left: 0.5em;
1890
+ margin-left: var(--space-xs);
1891
+ }
1892
+
1893
+ a.article__link {
1894
+ color: #26353f;
1895
+ color: var(--theme-dark-text);
1896
+ text-decoration: none;
1897
+ }
1898
+
1899
+ .article__title {
1900
+ margin-bottom: 0;
1901
+ }
1902
+
1903
+ .article__full .article__title,
1904
+ .article__full .article__meta {
1905
+ color: #fff;
1906
+ color: var(--theme-light-text);
1907
+ }
1908
+
1909
+ .article__thumbnail {
1910
+ width: 100%;
1911
+ height: 200px;
1912
+ overflow: hidden;
1913
+ position: relative;
1914
+ margin-top: 1em;
1915
+ margin-top: var(--space-s);
1916
+ }
1917
+
1918
+ .article__thumbnail img {
1919
+ width: 100%;
1920
+ position: relative;
1921
+ top: 50%;
1922
+ -webkit-transform: translateY(-50%);
1923
+ transform: translateY(-50%);
1924
+ }
1925
+
1926
+ @media (max-width: 549px) {
1927
+ .article__container,
1928
+ .article__hero .article__container {
1929
+ width: 85%;
1930
+ padding: 0;
1931
+ }
1932
+
1933
+ .article__author-list {
1934
+ -webkit-box-orient: vertical;
1935
+ -webkit-box-direction: normal;
1936
+ -ms-flex-direction: column;
1937
+ flex-direction: column;
1938
+ }
1939
+
1940
+ .article__author-list .article__author {
1941
+ width: 100%;
1942
+ margin-left: 0;
1943
+ }
1944
+
1945
+ .article__author-list .article__author + .article__author {
1946
+ margin-top: 1em;
1947
+ margin-top: var(--space-s);
1948
+ margin-left: 0;
1949
+ }
1950
+ }
1951
+
1952
+ .dashboard {
1953
+ display: -webkit-box;
1954
+ display: -ms-flexbox;
1955
+ display: flex;
1956
+ -webkit-box-orient: horizontal;
1957
+ -webkit-box-direction: normal;
1958
+ -ms-flex-direction: row;
1959
+ flex-direction: row;
1960
+ -webkit-box-flex: 1;
1961
+ -ms-flex: 1 1 auto;
1962
+ flex: 1 1 auto;
1963
+ min-height: calc(100vh - 73px);
1964
+ }
1965
+
1966
+ .dashboard .side-menu {
1967
+ -webkit-box-flex: 1;
1968
+ -ms-flex: 1 1 auto;
1969
+ flex: 1 1 auto;
1970
+ background: #fff;
1971
+ background: var(--white);
1972
+ }
1973
+
1974
+ .dashboard .side-menu ul {
1975
+ margin-top: 0;
1976
+ padding: 0;
1977
+ list-style-type: none;
1978
+ }
1979
+
1980
+ .dashboard .side-menu a {
1981
+ padding: 1em 2em;
1982
+ padding: var(--space-s) var(--space-l);
1983
+ display: block;
1984
+ width: 100%;
1985
+ color: #26353f;
1986
+ color: var(--theme-dark-text);
1987
+ text-decoration: none;
1988
+ }
1989
+
1990
+ .dashboard .side-menu a.active {
1991
+ background: linear-gradient(to right, #0053b3, #0053b3 5px, #ebeff3 5px, #ebeff3);
1992
+ background: linear-gradient(to right, var(--theme-primary), var(--theme-primary) 5px, var(--lighter-grey) 5px, var(--lighter-grey));
1993
+ }
1994
+
1995
+ .dashboard .side-menu a:hover {
1996
+ color: #0053b3;
1997
+ color: var(--theme-primary);
1998
+ }
1999
+
2000
+ .dashboard .main {
2001
+ padding: 2em;
2002
+ padding: var(--space-l);
2003
+ -webkit-box-flex: 1;
2004
+ -ms-flex: 1 1 75%;
2005
+ flex: 1 1 75%;
2006
+ background: #ebeff3;
2007
+ background: var(--lighter-grey);
2008
+ }
2009
+
2010
+ .dashboard .main > :first-child {
2011
+ margin-top: 0;
2012
+ }
2013
+
2014
+ @media (max-width: 749px) {
2015
+ .dashboard {
2016
+ -webkit-box-orient: vertical;
2017
+ -webkit-box-direction: normal;
2018
+ -ms-flex-direction: column;
2019
+ flex-direction: column;
2020
+ }
2021
+ }
2022
+
2023
+ .documentation {
2024
+ display: -webkit-box;
2025
+ display: -ms-flexbox;
2026
+ display: flex;
2027
+ }
2028
+
2029
+ .side-pane {
2030
+ padding: 2em 0;
2031
+ padding: var(--space-l) 0;
2032
+ -webkit-box-flex: 0;
2033
+ -ms-flex: 0 0 25%;
2034
+ flex: 0 0 25%;
2035
+ font-size: 14px;
2036
+ }
2037
+
2038
+ .side-pane li {
2039
+ list-style-type: none;
2040
+ }
2041
+
2042
+ .side-pane h2 {
2043
+ margin-top: 0;
2044
+ padding: 0.5em;
2045
+ padding: var(--space-xs);
2046
+ }
2047
+
2048
+ .side-pane .side-pane__menu {
2049
+ list-style-type: none;
2050
+ margin: 0;
2051
+ padding: 0;
2052
+ width: 100%;
2053
+ float: right;
2054
+ }
2055
+
2056
+ .side-pane__title h3 {
2057
+ font-family: 'Source Sans Pro';
2058
+ text-transform: uppercase;
2059
+ padding-bottom: 1em;
2060
+ padding-bottom: var(--space-s);
2061
+ border-bottom: 1px solid #adb9c9;
2062
+ border-bottom: 1px solid var(--theme-border);
2063
+ font-weight: 400;
2064
+ font-size: 1em;
2065
+ }
2066
+
2067
+ .side-pane a {
2068
+ padding: 0.5em 0;
2069
+ padding: var(--space-xs) 0;
2070
+ display: block;
2071
+ width: 100%;
2072
+ border-radius: 3px;
2073
+ border-radius: var(--theme-border-radius);
2074
+ color: #26353f;
2075
+ color: var(--theme-dark-text);
2076
+ text-decoration: none;
2077
+ }
2078
+
2079
+ .side-pane a:hover {
2080
+ text-decoration: underline;
2081
+ background: 0;
2082
+ }
2083
+
2084
+ .side-pane li.side-pane__dropdown > a {
2085
+ background: url("images/icons/external/arrow-right.svg") no-repeat;
2086
+ background-position: center right 1em;
2087
+ background-position: center right var(--space-s);
2088
+ background-size: 15px 15px;
2089
+ }
2090
+
2091
+ .side-pane li.side-pane__dropdown > a:hover {
2092
+ background: url("images/icons/external/arrow-right.svg") no-repeat;
2093
+ background-position: center right 1em;
2094
+ background-position: center right var(--space-s);
2095
+ background-size: 15px 15px;
2096
+ text-decoration: underline;
2097
+ }
2098
+
2099
+ .side-pane li.unfolded.side-pane__dropdown > a,
2100
+ .side-pane li.unfolded.side-pane__dropdown > a:hover {
2101
+ background-image: url("images/icons/external/arrow-down.svg");
2102
+ }
2103
+
2104
+ .side-pane li.active.side-pane__dropdown a {
2105
+ font-weight: 700;
2106
+ }
2107
+
2108
+ .side-pane__dropdown.unfolded .side-pane__submenu {
2109
+ display: block;
2110
+ }
2111
+
2112
+ .side-pane__submenu {
2113
+ padding-left: 1em;
2114
+ padding-left: var(--space-s);
2115
+ display: none;
2116
+ }
2117
+
2118
+ .side-pane__submenu a,
2119
+ .side-pane__submenu a:visited {
2120
+ padding: 0.5em;
2121
+ padding: var(--space-xs);
2122
+ list-style-type: none;
2123
+ color: #53657d;
2124
+ color: var(--darker-grey);
2125
+ border-radius: 3px;
2126
+ border-radius: var(--theme-border-radius);
2127
+ text-decoration: none;
2128
+ display: inline-block;
2129
+ }
2130
+
2131
+ .side-pane__submenu li.active {
2132
+ color: #0053b3;
2133
+ color: var(--theme-primary);
2134
+ }
2135
+
2136
+ .side-pane__submenu li.active a {
2137
+ font-weight: 700;
2138
+ color: #0053b3;
2139
+ color: var(--theme-primary);
2140
+ }
2141
+
2142
+ .main-pane {
2143
+ padding: 3em;
2144
+ padding: var(--space-xl);
2145
+ background: #fff;
2146
+ background: var(--white);
2147
+ -webkit-box-flex: 1;
2148
+ -ms-flex: 1;
2149
+ flex: 1;
2150
+ }
2151
+
2152
+ .main-pane h1:first-child {
2153
+ margin-top: 0;
2154
+ }
2155
+
2156
+ @media (max-width: 749px) {
2157
+ .documentation {
2158
+ -webkit-box-orient: vertical;
2159
+ -webkit-box-direction: normal;
2160
+ -ms-flex-direction: column;
2161
+ flex-direction: column;
2162
+ }
2163
+
2164
+ .side-pane {
2165
+ border-right: none;
2166
+ border-bottom: 1px solid #c9d3df;
2167
+ border-bottom: 1px solid var(--theme-border-lighter);
2168
+ -webkit-box-flex: 1;
2169
+ -ms-flex: auto;
2170
+ flex: auto;
2171
+ }
2172
+
2173
+ .side-pane .side-pane__menu {
2174
+ max-width: unset;
2175
+ float: none;
2176
+ }
2177
+
2178
+ .main-pane,
2179
+ .side-pane {
2180
+ padding-left: 0;
2181
+ padding-right: 0;
2182
+ }
2183
+ }
2184
+
2185
+ @media (min-width: 1000px) {
2186
+ .main-pane .markdown {
2187
+ width: 80%;
2188
+ }
2189
+
2190
+ .side-pane {
2191
+ padding: 3em 0;
2192
+ padding: var(--space-xl) 0;
2193
+ -webkit-box-flex: 0;
2194
+ -ms-flex: 0 0 20rem;
2195
+ flex: 0 0 20rem;
2196
+ }
2197
+ }
2198
+
2199
+ /* helpers for evertyhing else */
2200
+ .text-left {
2201
+ text-align: left;
2202
+ }
2203
+
2204
+ .text-center {
2205
+ text-align: center;
2206
+ }
2207
+
2208
+ .text-right {
2209
+ text-align: right;
2210
+ }
2211
+
2212
+ .text-blue {
2213
+ color: #0053b3;
2214
+ color: var(--blue);
2215
+ }
2216
+
2217
+ .text-grey-lightest {
2218
+ color: #fafbfc;
2219
+ color: var(--lightest-grey);
2220
+ }
2221
+
2222
+ .text-grey-lighter {
2223
+ color: #ebeff3;
2224
+ color: var(--lighter-grey);
2225
+ }
2226
+
2227
+ .text-grey-light {
2228
+ color: #c9d3df;
2229
+ color: var(--light-grey);
2230
+ }
2231
+
2232
+ .text-grey {
2233
+ color: #adb9c9;
2234
+ color: var(--grey);
2235
+ }
2236
+
2237
+ .text-grey-dark {
2238
+ color: #8393a7;
2239
+ color: var(--dark-grey);
2240
+ }
2241
+
2242
+ .text-grey-darker {
2243
+ color: #53657d;
2244
+ color: var(--darker-grey);
2245
+ }
2246
+
2247
+ .text-grey-darkest {
2248
+ color: #26353f;
2249
+ color: var(--darkest-grey);
2250
+ }
2251
+
2252
+ .text-black {
2253
+ color: #1c1c1c;
2254
+ color: var(--black);
2255
+ }
2256
+
2257
+ .text-green {
2258
+ color: #03bd5b;
2259
+ color: var(--green);
2260
+ }
2261
+
2262
+ .text-orange {
2263
+ color: #ff9947;
2264
+ color: var(--orange);
2265
+ }
2266
+
2267
+ .text-red {
2268
+ color: #d63626;
2269
+ color: var(--red);
2270
+ }
2271
+
2272
+ .row {
2273
+ display: -webkit-box;
2274
+ display: -ms-flexbox;
2275
+ display: flex;
2276
+ -webkit-box-pack: justify;
2277
+ -ms-flex-pack: justify;
2278
+ justify-content: space-between;
2279
+ -webkit-box-align: stretch;
2280
+ -ms-flex-align: stretch;
2281
+ align-items: stretch;
2282
+ margin-left: -var(--space-s);
2283
+ margin-right: -var(--space-s);
2284
+ -webkit-box-orient: horizontal;
2285
+ -webkit-box-direction: normal;
2286
+ -ms-flex-direction: row;
2287
+ flex-direction: row;
2288
+ }
2289
+
2290
+ .row > * {
2291
+ max-width: 50em;
2292
+ }
2293
+
2294
+ .row > * + * {
2295
+ margin-left: 1.5em;
2296
+ margin-left: var(--space-m);
2297
+ }
2298
+
2299
+ @media (max-width: 749px) {
2300
+ .row {
2301
+ -webkit-box-orient: vertical;
2302
+ -webkit-box-direction: normal;
2303
+ -ms-flex-direction: column;
2304
+ flex-direction: column;
2305
+ }
2306
+
2307
+ .row > * + * {
2308
+ margin-left: 0;
2309
+ margin-top: 1.5em;
2310
+ margin-top: var(--space-m);
2311
+ }
2312
+ }
2313
+
2314
+ .grid {
2315
+ display: grid;
2316
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
2317
+ grid-gap: 1em;
2318
+ grid-gap: var(--space-s);
2319
+ margin-top: 1em;
2320
+ margin-top: var(--space-s);
2321
+ justify-items: center;
2322
+ -webkit-box-pack: space-evenly;
2323
+ -ms-flex-pack: space-evenly;
2324
+ justify-content: space-evenly;
2325
+ }
2326
+
2327
+ .grid .panel + .panel,
2328
+ .grid .card + .card {
2329
+ margin: 0;
2330
+ }
2331
+
2332
+ .typography__sample {
2333
+ margin-top: 2em;
2334
+ margin-top: var(--space-l);
2335
+ }
2336
+
2337
+ .typography__sample > * {
2338
+ display: inline;
2339
+ margin: 0;
2340
+ }
2341
+
2342
+ .typography__caption {
2343
+ margin-left: 1em;
2344
+ margin-left: var(--space-s);
2345
+ }
2346
+
2347
+ .text-quote {
2348
+ display: block;
2349
+ }
2350
+
2351
+ .color-panel {
2352
+ display: grid;
2353
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
2354
+ margin-bottom: 2em;
2355
+ margin-bottom: var(--space-l);
2356
+ }
2357
+
2358
+ .color-panel__block {
2359
+ margin-bottom: 1em;
2360
+ margin-bottom: var(--space-s);
2361
+ display: -webkit-box;
2362
+ display: -ms-flexbox;
2363
+ display: flex;
2364
+ -webkit-box-align: center;
2365
+ -ms-flex-align: center;
2366
+ align-items: center;
2367
+ }
2368
+
2369
+ .color-panel__sample {
2370
+ margin-right: 1em;
2371
+ margin-right: var(--space-s);
2372
+ width: 50px;
2373
+ height: 50px;
2374
+ border-radius: 2px;
2375
+ vertical-align: middle;
2376
+ }
2377
+
2378
+ .color-panel__description {
2379
+ padding: 0.5em 0;
2380
+ padding: var(--space-xs) 0;
2381
+ vertical-align: middle;
2382
+ }
2383
+
2384
+ .color-panel__name {
2385
+ font-family: 'Evolventa';
2386
+ font-weight: 700;
2387
+ margin: 0;
2388
+ }
2389
+
2390
+ .color-panel__sample-double {
2391
+ display: -webkit-box;
2392
+ display: -ms-flexbox;
2393
+ display: flex;
2394
+ -webkit-box-orient: vertical;
2395
+ -webkit-box-direction: normal;
2396
+ -ms-flex-direction: column;
2397
+ flex-direction: column;
2398
+ border-radius: 2px;
2399
+ overflow: hidden;
2400
+ margin-right: 1em;
2401
+ }
2402
+
2403
+ .color-panel__sample-double .color-panel__sample {
2404
+ border-radius: 0;
2405
+ margin-right: 0;
2406
+ }
2407
+
2408
+ /* color blocks */
2409
+ .color-panel__sample.primary-medium {
2410
+ background: #0053b3;
2411
+ background: var(--blue);
2412
+ }
2413
+
2414
+ .color-panel__sample.primary-light {
2415
+ background: #006be6;
2416
+ background: var(--light-blue);
2417
+ }
2418
+
2419
+ .color-panel__sample.primary-dark {
2420
+ background: #003b80;
2421
+ background: var(--dark-blue);
2422
+ }
2423
+
2424
+ .color-panel__sample.primary-darker {
2425
+ background: #00234d;
2426
+ background: var(--darker-blue);
2427
+ }
2428
+
2429
+ .color-panel__sample.white {
2430
+ background: #fff;
2431
+ background: var(--white);
2432
+ border: 1px solid #c9d3df;
2433
+ border: 1px solid var(--theme-border-lighter);
2434
+ }
2435
+
2436
+ .color-panel__sample.lighter-grey {
2437
+ background: #ebeff3;
2438
+ background: var(--lighter-grey);
2439
+ }
2440
+
2441
+ .color-panel__sample.light-grey {
2442
+ background: #c9d3df;
2443
+ background: var(--light-grey);
2444
+ }
2445
+
2446
+ .color-panel__sample.grey {
2447
+ background: #adb9c9;
2448
+ background: var(--grey);
2449
+ }
2450
+
2451
+ .color-panel__sample.dark-grey {
2452
+ background: #8393a7;
2453
+ background: var(--dark-grey);
2454
+ }
2455
+
2456
+ .color-panel__sample.darker-grey {
2457
+ background: #53657d;
2458
+ background: var(--darker-grey);
2459
+ }
2460
+
2461
+ .color-panel__sample.almost-black {
2462
+ background: #26353f;
2463
+ background: var(--darkest-grey);
2464
+ }
2465
+
2466
+ .color-panel__sample.black {
2467
+ background: #1c1c1c;
2468
+ background: var(--black);
2469
+ }
2470
+
2471
+ .color-panel__sample.green {
2472
+ background: #03bd5b;
2473
+ background: var(--green);
2474
+ }
2475
+
2476
+ .color-panel__sample.light-green {
2477
+ background: #daf5e7;
2478
+ background: var(--light-green);
2479
+ }
2480
+
2481
+ .color-panel__sample.orange {
2482
+ background: #ff9947;
2483
+ background: var(--orange);
2484
+ }
2485
+
2486
+ .color-panel__sample.light-orange {
2487
+ background: #fff0e4;
2488
+ background: var(--light-orange);
2489
+ }
2490
+
2491
+ .color-panel__sample.red {
2492
+ background: #d63626;
2493
+ background: var(--red);
2494
+ }
2495
+
2496
+ .color-panel__sample.light-red {
2497
+ background: rgba(239,172,166,0.45882);
2498
+ background: var(--light-red);
2499
+ }
2500
+
2501
+ .color-panel__sample.blue {
2502
+ background: #0053b3;
2503
+ background: var(--blue);
2504
+ }
2505
+
2506
+ .color-panel__sample.light-blue {
2507
+ background: #b4e1fa;
2508
+ background: var(--lighter-blue);
2509
+ }
2510
+
2511
+ #documentation {
2512
+ border-top: 1px solid #c9d3df;
2513
+ border-top: 1px solid var(--theme-border-lighter);
2514
+ border-bottom: 1px solid #c9d3df;
2515
+ border-bottom: 1px solid var(--theme-border-lighter);
2516
+ }
2517
+
2518
+ @media (max-width: 749px) {
2519
+ .color-panel {
2520
+ grid-template-columns: 1fr;
2521
+ }
2522
+ }
2523
+
2524
+ .dashboard {
2525
+ border-top: 1px solid #adb9c9;
2526
+ border-top: 1px solid var(--theme-border);
2527
+ border-bottom: 1px solid #adb9c9;
2528
+ border-bottom: 1px solid var(--theme-border);
2529
+ }
2530
+
2531
+ .cards {
2532
+ margin-top: 3em;
2533
+ margin-top: var(--space-xl);
2534
+ }
2535
+
2536
+ .form__group + .button {
2537
+ margin-top: 1em;
2538
+ margin-top: var(--space-s);
2539
+ }
2540
+
2541
+ .light-background {
2542
+ background-color: #fff;
2543
+ background-color: var(--white);
2544
+ padding: 0 1em;
2545
+ padding: 0 var(--space-s);
2546
+ }
2547
+
2548
+ .dark-background {
2549
+ background-color: #00234d;
2550
+ background-color: var(--darker-blue);
2551
+ padding: 1em;
2552
+ padding: var(--space-s);
2553
+ }
2554
+
2555
+ form {
2556
+ margin-top: 2em;
2557
+ margin-top: var(--space-l);
2558
+ }