jekyll-theme-gouvfr 0.0.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.
Files changed (56) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +2 -0
  4. data/_includes/footer.html +27 -0
  5. data/_includes/head.html +12 -0
  6. data/_includes/header.html +38 -0
  7. data/_includes/hero.html +15 -0
  8. data/_includes/script.html +1 -0
  9. data/_includes/sidebar.html +15 -0
  10. data/_layouts/blog.html +29 -0
  11. data/_layouts/default.html +61 -0
  12. data/_layouts/home.html +9 -0
  13. data/_layouts/page.html +21 -0
  14. data/_layouts/post.html +16 -0
  15. data/_sass/_variables.scss +46 -0
  16. data/_sass/main.scss +27 -0
  17. data/assets/fonts/Evolventa/Evolventa-Bold.ttf +0 -0
  18. data/assets/fonts/Evolventa/Evolventa-BoldOblique.ttf +0 -0
  19. data/assets/fonts/Evolventa/Evolventa-Oblique.ttf +0 -0
  20. data/assets/fonts/Evolventa/Evolventa-Regular.ttf +0 -0
  21. data/assets/fonts/Evolventa/gpl.txt +340 -0
  22. data/assets/fonts/Evolventa/lppl.txt +416 -0
  23. data/assets/fonts/Source Sans Pro/SIL Open Font License.txt +43 -0
  24. data/assets/fonts/Source Sans Pro/SourceSansPro-Black.otf +0 -0
  25. data/assets/fonts/Source Sans Pro/SourceSansPro-BlackIt.otf +0 -0
  26. data/assets/fonts/Source Sans Pro/SourceSansPro-Bold.otf +0 -0
  27. data/assets/fonts/Source Sans Pro/SourceSansPro-BoldIt.otf +0 -0
  28. data/assets/fonts/Source Sans Pro/SourceSansPro-ExtraLight.otf +0 -0
  29. data/assets/fonts/Source Sans Pro/SourceSansPro-ExtraLightIt.otf +0 -0
  30. data/assets/fonts/Source Sans Pro/SourceSansPro-It.otf +0 -0
  31. data/assets/fonts/Source Sans Pro/SourceSansPro-Light.otf +0 -0
  32. data/assets/fonts/Source Sans Pro/SourceSansPro-LightIt.otf +0 -0
  33. data/assets/fonts/Source Sans Pro/SourceSansPro-Regular.otf +0 -0
  34. data/assets/fonts/Source Sans Pro/SourceSansPro-Semibold.otf +0 -0
  35. data/assets/fonts/Source Sans Pro/SourceSansPro-SemiboldIt.otf +0 -0
  36. data/assets/images/datagouvfr.svg +1 -0
  37. data/assets/images/etalab.svg +1 -0
  38. data/assets/images/favicon.ico +0 -0
  39. data/assets/images/favicons/apple-icon-180x180.png +0 -0
  40. data/assets/images/favicons/browserconfig.xml +9 -0
  41. data/assets/images/favicons/favicon-16x16.png +0 -0
  42. data/assets/images/favicons/favicon-32x32.png +0 -0
  43. data/assets/images/favicons/manifest.json +18 -0
  44. data/assets/images/favicons/safari-pinned-tab.svg +15 -0
  45. data/assets/images/icons/arrow-down.svg +1 -0
  46. data/assets/images/icons/arrow-right.svg +1 -0
  47. data/assets/images/icons/tick.svg +1 -0
  48. data/assets/images/logo-footer.svg +1 -0
  49. data/assets/images/logo-marianne.svg +1 -0
  50. data/assets/images/preview.png +0 -0
  51. data/assets/images/preview_fb.png +0 -0
  52. data/assets/main.scss +6 -0
  53. data/assets/style/main.css +1548 -0
  54. data/assets/style/main.min.css +1 -0
  55. data/assets/template.css +1686 -0
  56. metadata +140 -0
@@ -0,0 +1,1686 @@
1
+ body {
2
+ font-family: "Source Sans Pro", Arial, sans-serif;
3
+ font-size: 16px;
4
+ -webkit-font-smoothing: antialiased;
5
+ -moz-osx-font-smoothing: grayscale;
6
+ }
7
+
8
+ h1,
9
+ h2,
10
+ h3,
11
+ h4,
12
+ h5,
13
+ h6 {
14
+ font-family: "Evolventa", "Trebuchet MS", sans-serif;
15
+ }
16
+
17
+ h1 {
18
+ font-size: 2em;
19
+ }
20
+
21
+ h2 {
22
+ font-size: 1.5em;
23
+ }
24
+
25
+ h3 {
26
+ font-size: 1.25em;
27
+ }
28
+
29
+ h4 {
30
+ font-size: 1em;
31
+ }
32
+
33
+ p {
34
+ line-height: 1.5em;
35
+ }
36
+
37
+ .subtitle {
38
+ color: #8393a7;
39
+ }
40
+
41
+ .text-left {
42
+ text-align: left;
43
+ }
44
+
45
+ .text-center {
46
+ text-align: center;
47
+ }
48
+
49
+ .text-right {
50
+ text-align: right;
51
+ }
52
+
53
+ blockquote {
54
+ background-color: #ebeff3;
55
+ border-left: 8px solid #c9d3df;
56
+ padding: 4px 0 4px 25px;
57
+ }
58
+
59
+ .icon {
60
+ display: inline-block;
61
+ width: 1em;
62
+ height: 1em;
63
+ stroke-width: 0;
64
+ stroke: currentColor;
65
+ fill: currentColor;
66
+ font-size: 16px;
67
+ }
68
+
69
+ #icon-search {
70
+ fill: #adb9c9;
71
+ }
72
+
73
+ * {
74
+ -webkit-box-sizing: border-box;
75
+ box-sizing: border-box;
76
+ }
77
+
78
+ html,
79
+ body {
80
+ height: 100%;
81
+ position: relative;
82
+ }
83
+
84
+ body {
85
+ padding: 0;
86
+ margin: 0;
87
+ overflow: auto;
88
+ background: #ebeff3;
89
+ }
90
+
91
+ a,
92
+ button {
93
+ cursor: pointer;
94
+ }
95
+
96
+ a,
97
+ a:hover,
98
+ a:focus,
99
+ a:visited,
100
+ a:active {
101
+ color: #0081d5;
102
+ text-decoration: none;
103
+ -webkit-transition: color 0.2s ease-out;
104
+ transition: color 0.2s ease-out;
105
+ }
106
+
107
+ small {
108
+ font-size: 0.875em;
109
+ }
110
+
111
+ .tag-list {
112
+ padding: 0;
113
+ margin: 0;
114
+ }
115
+
116
+ .tag {
117
+ background: #0081d5;
118
+ border-radius: 3px;
119
+ display: inline-block;
120
+ padding: 0.3em 0.8em;
121
+ margin-right: 0.5em;
122
+ color: #fff;
123
+ }
124
+
125
+ .tag a {
126
+ color: #fff;
127
+ }
128
+
129
+ .modals .button {
130
+ margin: auto;
131
+ }
132
+
133
+ table {
134
+ background: #fff;
135
+ border: #c9d3df;
136
+ border-radius: 2px;
137
+ -webkit-box-shadow: 0 1px 4px #c9d3df;
138
+ box-shadow: 0 1px 4px #c9d3df;
139
+ position: relative;
140
+ width: 100%;
141
+ border-collapse: collapse;
142
+ }
143
+
144
+ td,
145
+ th {
146
+ padding: 1em;
147
+ text-align: left;
148
+ }
149
+
150
+ td {
151
+ border-top: 1px solid #adb9c9;
152
+ }
153
+
154
+ thead th {
155
+ background: #ebeff3;
156
+ font-size: 1.1em;
157
+ }
158
+
159
+ tr:hover {
160
+ background: #fafbfc;
161
+ }
162
+
163
+ pre {
164
+ display: block;
165
+ margin-top: 1em;
166
+ }
167
+
168
+ code {
169
+ background: #ebeff3;
170
+ border-radius: 3px;
171
+ padding: 0.5em;
172
+ font-family: 'Courier New';
173
+ word-break: break-word;
174
+ white-space: pre-wrap;
175
+ vertical-align: middle;
176
+ display: inline-block;
177
+ max-width: 100%;
178
+ overflow-x: auto;
179
+ }
180
+
181
+ pre code {
182
+ font-size: 1em;
183
+ padding: 1em;
184
+ }
185
+
186
+ a.button,
187
+ a.button:focus,
188
+ a.button:active,
189
+ a.button:visited,
190
+ button.button,
191
+ button.button:focus,
192
+ button.button:active,
193
+ button.button:visited,
194
+ input[type="button"],
195
+ input[type="button"]:focus,
196
+ input[type="button"]:active,
197
+ input[type="button"]:visited {
198
+ display: inline-block;
199
+ padding: 0.5em 2em;
200
+ color: #fff;
201
+ background-color: #0081d5;
202
+ border-radius: 3px;
203
+ border: 0;
204
+ -webkit-box-shadow: 0 2px #006cb0;
205
+ box-shadow: 0 2px #006cb0;
206
+ font-family: "Source Sans Pro", Arial, sans-serif;
207
+ font-size: 1em;
208
+ position: relative;
209
+ top: 0;
210
+ overflow: hidden;
211
+ }
212
+
213
+ a.button:hover,
214
+ button.button:hover,
215
+ input[type="button"]:hover {
216
+ background: #006cb0;
217
+ }
218
+
219
+ a.button:active,
220
+ button.button:active,
221
+ input[type="button"]:hover {
222
+ -webkit-transform: translateY(2px);
223
+ transform: translateY(2px);
224
+ border-bottom: 0;
225
+ -webkit-box-shadow: none;
226
+ box-shadow: none;
227
+ }
228
+
229
+ button::-moz-focus-inner {
230
+ border: 0;
231
+ }
232
+
233
+ a.button.small,
234
+ button.button.small,
235
+ input[type="button"].small {
236
+ font-size: 0.825em;
237
+ padding: 0.25em 1em;
238
+ }
239
+
240
+ a.button.large,
241
+ button.button.large,
242
+ input[type="button"].large {
243
+ font-size: 1.25em;
244
+ }
245
+
246
+ .button.warning,
247
+ a.button.warning {
248
+ background-color: #d1335b;
249
+ -webkit-box-shadow: 0 2px #a13030;
250
+ box-shadow: 0 2px #a13030;
251
+ }
252
+
253
+ .button.warning:hover,
254
+ .button.warning:active {
255
+ background-color: #a13030;
256
+ }
257
+
258
+ .button.secondary,
259
+ a.button.secondary {
260
+ background-color: #adb9c9;
261
+ -webkit-box-shadow: 0 2px #8393a7;
262
+ box-shadow: 0 2px #8393a7;
263
+ }
264
+
265
+ .button.secondary:hover,
266
+ .button.secondary:active {
267
+ background-color: #8393a7;
268
+ }
269
+
270
+ .button + .button {
271
+ margin-left: 1em;
272
+ }
273
+
274
+ .container {
275
+ position: relative;
276
+ width: 100%;
277
+ max-width: 1000px;
278
+ margin: 0 auto;
279
+ padding: 0 20px;
280
+ }
281
+
282
+ .container h1:first-of-type {
283
+ margin-top: 0;
284
+ }
285
+
286
+ .article__container {
287
+ max-width: 35em;
288
+ }
289
+
290
+ @media (min-width: 400px) {
291
+ .container {
292
+ width: 85%;
293
+ padding: 0;
294
+ }
295
+ }
296
+
297
+ @media (min-width: 550px) {
298
+ .container {
299
+ width: 80%;
300
+ }
301
+ }
302
+
303
+ @font-face {
304
+ font-family: "Source Sans Pro";
305
+ src: url("../fonts/Source Sans Pro/SourceSansPro-Regular.otf");
306
+ font-weight: 400;
307
+ }
308
+
309
+ @font-face {
310
+ font-family: "Source Sans Pro";
311
+ src: url("../fonts/Source Sans Pro/SourceSansPro-Bold.otf");
312
+ font-weight: 800;
313
+ }
314
+
315
+ @font-face {
316
+ font-family: "Source Sans Pro";
317
+ src: url("../fonts/Source Sans Pro/SourceSansPro-It.otf");
318
+ font-style: italic;
319
+ }
320
+
321
+ @font-face {
322
+ font-family: "Evolventa";
323
+ src: url("../fonts/Evolventa/Evolventa-Bold.ttf");
324
+ font-weight: 800;
325
+ }
326
+
327
+ .notification {
328
+ color: #0081d5;
329
+ background: #b4e1fa;
330
+ border: 1px solid #0081d5;
331
+ border-radius: 3px;
332
+ padding: 1em;
333
+ margin-bottom: 1em;
334
+ position: relative;
335
+ }
336
+
337
+ .notification .close {
338
+ border: 0;
339
+ background: 0;
340
+ color: currentColor;
341
+ position: absolute;
342
+ right: 1em;
343
+ }
344
+
345
+ .notification .icon {
346
+ fill: currentColor;
347
+ width: 20px;
348
+ height: 20px;
349
+ }
350
+
351
+ .notification.closable {
352
+ padding-right: 3em;
353
+ }
354
+
355
+ .notification.full-width {
356
+ width: 100%;
357
+ margin-bottom: 0;
358
+ text-align: center;
359
+ border: 0;
360
+ }
361
+
362
+ .notification.full-width.closable .close {
363
+ right: unset;
364
+ }
365
+
366
+ .notification.success {
367
+ color: #03bd5b;
368
+ background: #daf5e7;
369
+ border-color: #03bd5b;
370
+ }
371
+
372
+ .notification.warning {
373
+ color: #ff9947;
374
+ background: #fff0e4;
375
+ border-color: #ff9947;
376
+ }
377
+
378
+ .notification.error {
379
+ color: #d1335b;
380
+ background: #f8e1e7;
381
+ border-color: #d1335b;
382
+ }
383
+
384
+ .footer {
385
+ background: #26353f;
386
+ color: #fff;
387
+ padding: 2em 0;
388
+ }
389
+
390
+ .footer .container {
391
+ display: -webkit-box;
392
+ display: -ms-flexbox;
393
+ display: flex;
394
+ -webkit-box-orient: horizontal;
395
+ -webkit-box-direction: normal;
396
+ -ms-flex-flow: row wrap;
397
+ flex-flow: row wrap;
398
+ -webkit-box-pack: justify;
399
+ -ms-flex-pack: justify;
400
+ justify-content: space-between;
401
+ }
402
+
403
+ .footer ul {
404
+ list-style-type: none;
405
+ padding: 0;
406
+ }
407
+
408
+ .footer__social {
409
+ margin-top: 1em;
410
+ }
411
+
412
+ .footer__social li {
413
+ display: inline;
414
+ margin-right: 1em;
415
+ }
416
+
417
+ .footer__social .icon {
418
+ width: 35px;
419
+ height: 35px;
420
+ fill: #fff;
421
+ }
422
+
423
+ .footer__links {
424
+ margin: 0;
425
+ line-height: 2em;
426
+ }
427
+
428
+ .footer__links h2 {
429
+ margin-top: 0;
430
+ margin-bottom: 0.5em;
431
+ }
432
+
433
+ .footer__links a {
434
+ color: #fff;
435
+ }
436
+
437
+ .footer__logo {
438
+ width: 300px;
439
+ height: auto;
440
+ }
441
+
442
+ .footer__logo img {
443
+ width: 100%;
444
+ }
445
+
446
+ @media (max-width: 999px) {
447
+ .footer .container {
448
+ -webkit-box-orient: vertical;
449
+ -webkit-box-direction: normal;
450
+ -ms-flex-direction: column;
451
+ flex-direction: column;
452
+ }
453
+ }
454
+
455
+ .hero {
456
+ width: 100%;
457
+ color: #fff;
458
+ background: #0081d5;
459
+ }
460
+
461
+ .hero__container {
462
+ min-height: 38vh;
463
+ display: -webkit-box;
464
+ display: -ms-flexbox;
465
+ display: flex;
466
+ -webkit-box-orient: vertical;
467
+ -webkit-box-direction: normal;
468
+ -ms-flex-direction: column;
469
+ flex-direction: column;
470
+ -webkit-box-pack: center;
471
+ -ms-flex-pack: center;
472
+ justify-content: center;
473
+ -webkit-box-align: center;
474
+ -ms-flex-align: center;
475
+ align-items: center;
476
+ padding: 2em;
477
+ }
478
+
479
+ .hero__white-background {
480
+ padding: 10px 1em;
481
+ background-color: white;
482
+ }
483
+
484
+ h1.hero__white-background {
485
+ color: #26353f;
486
+ margin: 0;
487
+ }
488
+
489
+ .hero p {
490
+ margin: 1em auto;
491
+ color: #26353f;
492
+ font-size: 1.2em;
493
+ font-style: italic;
494
+ }
495
+
496
+ .navbar {
497
+ border-bottom: 1px solid #c9d3df;
498
+ -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
499
+ box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
500
+ width: 100%;
501
+ background: #fff;
502
+ z-index: 100;
503
+ }
504
+
505
+ .nav-fixed {
506
+ position: fixed;
507
+ top: 0;
508
+ }
509
+
510
+ .navbar__container {
511
+ display: -webkit-box;
512
+ display: -ms-flexbox;
513
+ display: flex;
514
+ -webkit-box-pack: justify;
515
+ -ms-flex-pack: justify;
516
+ justify-content: space-between;
517
+ -ms-flex-wrap: wrap;
518
+ flex-wrap: wrap;
519
+ -webkit-box-align: center;
520
+ -ms-flex-align: center;
521
+ align-items: center;
522
+ padding: 1em;
523
+ }
524
+
525
+ .navbar__home {
526
+ height: 40px;
527
+ }
528
+
529
+ .navbar__logo {
530
+ height: 100%;
531
+ }
532
+
533
+ .nav__links {
534
+ display: inline-block;
535
+ margin: 0;
536
+ padding: 0;
537
+ list-style-type: none;
538
+ }
539
+
540
+ .nav__item {
541
+ padding: 0;
542
+ display: inline-block;
543
+ }
544
+
545
+ .nav__item a,
546
+ .nav__item .dropdown {
547
+ color: #1c1c1c;
548
+ padding: 0.4em 0.8em;
549
+ border-radius: 3px;
550
+ }
551
+
552
+ .nav__links a::after {
553
+ content: none;
554
+ }
555
+
556
+ .nav__item a:hover,
557
+ .nav__item .dropdown:hover {
558
+ background: #ebeff3;
559
+ }
560
+
561
+ .nav__item a.active {
562
+ background: #0081d5;
563
+ color: #fff;
564
+ }
565
+
566
+ @media (max-width: 749px) {
567
+ .navbar__container {
568
+ -webkit-box-orient: vertical;
569
+ -webkit-box-direction: normal;
570
+ -ms-flex-direction: column;
571
+ flex-direction: column;
572
+ -webkit-box-align: start;
573
+ -ms-flex-align: start;
574
+ align-items: flex-start;
575
+ }
576
+
577
+ .nav__links {
578
+ padding-top: 1em;
579
+ }
580
+ }
581
+
582
+ .dropdown {
583
+ position: relative;
584
+ display: inline-block;
585
+ }
586
+
587
+ .dropdown-content {
588
+ display: none;
589
+ position: absolute;
590
+ background-color: #fff;
591
+ min-width: 110px;
592
+ text-align: center;
593
+ top: 2em;
594
+ right: 0;
595
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
596
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
597
+ z-index: 1;
598
+ }
599
+
600
+ .dropdown-content a {
601
+ color: black;
602
+ padding: 12px 16px;
603
+ text-decoration: none;
604
+ display: block;
605
+ }
606
+
607
+ .dropdown-content a:hover {
608
+ background-color: #c9d3df;
609
+ }
610
+
611
+ .dropdown:hover .dropdown-content {
612
+ display: block;
613
+ }
614
+
615
+ .row {
616
+ display: -webkit-box;
617
+ display: -ms-flexbox;
618
+ display: flex;
619
+ -webkit-box-orient: horizontal;
620
+ -webkit-box-direction: normal;
621
+ -ms-flex-direction: row;
622
+ flex-direction: row;
623
+ -webkit-box-pack: justify;
624
+ -ms-flex-pack: justify;
625
+ justify-content: space-between;
626
+ -webkit-box-align: stretch;
627
+ -ms-flex-align: stretch;
628
+ align-items: stretch;
629
+ width: 100%;
630
+ }
631
+
632
+ .row .column {
633
+ margin: 0 2em;
634
+ max-width: 50em;
635
+ }
636
+
637
+ .row .column + .column {
638
+ margin-left: 2em;
639
+ }
640
+
641
+ @media (max-width: 749px) {
642
+ .row {
643
+ -webkit-box-orient: vertical;
644
+ -webkit-box-direction: normal;
645
+ -ms-flex-direction: column;
646
+ flex-direction: column;
647
+ }
648
+
649
+ .row .column:not(:last-child) {
650
+ margin-bottom: 2em;
651
+ }
652
+
653
+ .row p + p {
654
+ margin-top: 1em;
655
+ }
656
+ }
657
+
658
+ .column img {
659
+ width: 100%;
660
+ }
661
+
662
+ .panel {
663
+ background: #fff;
664
+ border-radius: 2px;
665
+ -webkit-box-shadow: 0 1px 4px #c9d3df;
666
+ box-shadow: 0 1px 4px #c9d3df;
667
+ padding: 2em;
668
+ position: relative;
669
+ }
670
+
671
+ .panel + * {
672
+ margin-top: 2em;
673
+ }
674
+
675
+ .panel > :first-child {
676
+ margin-top: 0;
677
+ }
678
+
679
+ .panel > :last-child {
680
+ margin-bottom: 0;
681
+ }
682
+
683
+ .panel__header::after {
684
+ content: '';
685
+ display: block;
686
+ width: calc(100% + 4em);
687
+ position: relative;
688
+ left: -2em;
689
+ border-bottom: 1px solid #adb9c9;
690
+ margin-bottom: 2em;
691
+ }
692
+
693
+ .panel__header h3 {
694
+ display: inline-block;
695
+ }
696
+
697
+ .panel__header h3:first-of-type {
698
+ margin-top: 0;
699
+ }
700
+
701
+ .panel__header-extra {
702
+ margin-left: 1em;
703
+ color: #8393a7;
704
+ }
705
+
706
+ section {
707
+ padding: 5em 0;
708
+ background-color: #fff;
709
+ color: #1c1c1c;
710
+ }
711
+
712
+ .section-grey {
713
+ background-color: #ebeff3;
714
+ color: #1c1c1c;
715
+ }
716
+
717
+ .section-dark {
718
+ background-color: #1c1c1c;
719
+ color: #fff;
720
+ }
721
+
722
+ .section-color {
723
+ background-color: #0081d5;
724
+ color: #fff;
725
+ }
726
+
727
+ .section__subtitle {
728
+ margin: 0 auto 2em;
729
+ max-width: 640px;
730
+ font-size: 1.3em;
731
+ font-style: italic;
732
+ text-align: center;
733
+ margin-bottom: 0;
734
+ }
735
+
736
+ .section__subtitle:not(:last-child) {
737
+ margin-bottom: 3em;
738
+ }
739
+
740
+ .section__title + .section__subtitle {
741
+ margin-top: -3em;
742
+ }
743
+
744
+ .section__title {
745
+ margin: 0 0 3em;
746
+ text-align: center;
747
+ }
748
+
749
+ form {
750
+ max-width: 520px;
751
+ margin: 0 auto;
752
+ }
753
+
754
+ input,
755
+ textarea,
756
+ select {
757
+ width: 100%;
758
+ outline: none;
759
+ padding: 8px 14px;
760
+ font: inherit;
761
+ line-height: 1.6;
762
+ color: #1c1c1c;
763
+ border-radius: 3px;
764
+ border: 1px solid #adb9c9;
765
+ background: #fff;
766
+ vertical-align: middle;
767
+ position: relative;
768
+ }
769
+
770
+ input:focus,
771
+ textarea:focus,
772
+ select:focus {
773
+ border-color: #0081d5;
774
+ -webkit-transition: border-color 0.2s ease-out;
775
+ transition: border-color 0.2s ease-out;
776
+ -webkit-box-shadow: 0 0 1px 1px #b4e1fa;
777
+ box-shadow: 0 0 1px 1px #b4e1fa;
778
+ }
779
+
780
+ input:disabled,
781
+ select:disabled {
782
+ background-color: #ebeff3;
783
+ }
784
+
785
+ input[type=radio],
786
+ input[type=checkbox] {
787
+ margin-right: 6px;
788
+ margin-top: 0;
789
+ }
790
+
791
+ input[type=radio] {
792
+ height: 20px;
793
+ width: 20px;
794
+ border-radius: 50%;
795
+ display: inline-block;
796
+ -webkit-appearance: none;
797
+ -moz-appearance: none;
798
+ appearance: none;
799
+ padding: 0;
800
+ }
801
+
802
+ input[type=radio]::before {
803
+ content: '';
804
+ border-color: #0081d5;
805
+ border-radius: 50%;
806
+ position: absolute;
807
+ top: 5px;
808
+ left: 5px;
809
+ width: 8px;
810
+ height: 8px;
811
+ -webkit-transform: scale(0);
812
+ transform: scale(0);
813
+ }
814
+
815
+ input[type=radio]:checked {
816
+ background-color: #fff;
817
+ border-color: #0081d5;
818
+ opacity: 1;
819
+ }
820
+
821
+ input[type=radio]:checked::before {
822
+ background-color: #0081d5;
823
+ -webkit-transform: scale(1);
824
+ transform: scale(1);
825
+ -webkit-transition: -webkit-transform 0.2s ease-out;
826
+ transition: -webkit-transform 0.2s ease-out;
827
+ transition: transform 0.2s ease-out;
828
+ transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
829
+ }
830
+
831
+ input[type="checkbox"] {
832
+ -webkit-appearance: none;
833
+ -moz-appearance: none;
834
+ appearance: none;
835
+ height: 22px;
836
+ width: 22px;
837
+ padding: 0;
838
+ }
839
+
840
+ input[type="checkbox"]:checked {
841
+ background-color: #0081d5;
842
+ border-color: #0081d5;
843
+ opacity: 1;
844
+ -webkit-transition: border-color 0.2s ease-in, background-color 0.2s ease-out;
845
+ transition: border-color 0.2s ease-in, background-color 0.2s ease-out;
846
+ }
847
+
848
+ input[type="checkbox"]::before {
849
+ -webkit-transform: scale(0);
850
+ transform: scale(0);
851
+ content: '';
852
+ position: absolute;
853
+ top: 3px;
854
+ left: 3px;
855
+ height: 14px;
856
+ width: 14px;
857
+ background: url("../images/icons/tick.svg") center center no-repeat;
858
+ }
859
+
860
+ input[type="checkbox"]:checked::before {
861
+ color: #fff;
862
+ display: block;
863
+ -webkit-transform: scale(1);
864
+ transform: scale(1);
865
+ -webkit-transition: -webkit-transform 0.2s ease-out;
866
+ transition: -webkit-transform 0.2s ease-out;
867
+ transition: transform 0.2s ease-out;
868
+ transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
869
+ }
870
+
871
+ select {
872
+ -webkit-appearance: none;
873
+ -moz-appearance: none;
874
+ appearance: none;
875
+ background: #fff url("../images/icons/arrow-down.svg") no-repeat;
876
+ background-position: center right 1em;
877
+ background-size: 15px;
878
+ padding-right: 45px;
879
+ border-radius: 3px;
880
+ width: auto;
881
+ }
882
+
883
+ select:focus {
884
+ outline: none;
885
+ }
886
+
887
+ select:-moz-focusring {
888
+ color: transparent;
889
+ text-shadow: 0 0 0 #000;
890
+ }
891
+
892
+ label,
893
+ legend {
894
+ display: block;
895
+ margin-bottom: 0.5em;
896
+ color: #26353f;
897
+ }
898
+
899
+ label.label-inline {
900
+ display: inline;
901
+ color: #1c1c1c;
902
+ }
903
+
904
+ .label-inline + input[type=radio],
905
+ .label-inline + input[type=checkbox] {
906
+ margin-left: 10px;
907
+ }
908
+
909
+ .form__container {
910
+ max-width: 30em;
911
+ margin: auto;
912
+ }
913
+
914
+ .form__group {
915
+ position: relative;
916
+ display: block;
917
+ }
918
+
919
+ .form__group + .form__group {
920
+ margin-top: 2em;
921
+ }
922
+
923
+ fieldset {
924
+ border: none;
925
+ margin: 0;
926
+ padding: 0;
927
+ width: 100%;
928
+ }
929
+
930
+ .overlay-button {
931
+ position: absolute;
932
+ right: 21px;
933
+ top: 12px;
934
+ background: 0;
935
+ border: 0;
936
+ width: 15px;
937
+ height: 15px;
938
+ }
939
+
940
+ .search__group {
941
+ position: relative;
942
+ }
943
+
944
+ .overlayed-button .icon-search {
945
+ height: 15px;
946
+ width: 15px;
947
+ }
948
+
949
+ .input__group {
950
+ display: -webkit-box;
951
+ display: -ms-flexbox;
952
+ display: flex;
953
+ -webkit-box-orient: horizontal;
954
+ -webkit-box-direction: normal;
955
+ -ms-flex-direction: row;
956
+ flex-direction: row;
957
+ }
958
+
959
+ .input__group .icon-button,
960
+ .input__group .icon-button:active {
961
+ margin-left: 1em;
962
+ padding: 0 0.8em;
963
+ }
964
+
965
+ .input__group .icon-button .icon {
966
+ width: 16px;
967
+ height: 16px;
968
+ }
969
+
970
+ .richtext img {
971
+ /* Prevent larger images to break layout */
972
+ max-width: 100%;
973
+
974
+ /* Center images smaller than width */
975
+ margin: auto;
976
+ display: block;
977
+ }
978
+
979
+ /* Allow images legends with the following syntax:
980
+ ![](path_to_image)
981
+ *image_caption* */
982
+ .richtext img + em {
983
+ display: block;
984
+ text-align: center;
985
+ margin: 0.3em 0.1em;
986
+ }
987
+
988
+ /* Disable lists default indentation */
989
+ .richtext ol,
990
+ .richtext ul {
991
+ margin: 0;
992
+ padding: 0 0 0 1em;
993
+ }
994
+
995
+ .richtext li {
996
+ padding-left: 0.5em;
997
+ }
998
+
999
+ /* Lighter inline code element */
1000
+ .richtext code {
1001
+ padding: 0 0.1em;
1002
+ border-radius: 0.2em;
1003
+ }
1004
+
1005
+ /* But <pre> block should be spaced */
1006
+ .richtext pre {
1007
+ padding: 0.5em;
1008
+ margin: 0.5em 0;
1009
+ border-radius: 0.5em;
1010
+ background-color: #ebeff3;
1011
+ }
1012
+
1013
+ .documentation {
1014
+ display: -webkit-box;
1015
+ display: -ms-flexbox;
1016
+ display: flex;
1017
+ }
1018
+
1019
+ .side-pane {
1020
+ background: #ebeff3;
1021
+ padding: 2em;
1022
+ -webkit-box-flex: 0;
1023
+ -ms-flex: 0 0 25%;
1024
+ flex: 0 0 25%;
1025
+ border-right: 1px solid #c9d3df;
1026
+ }
1027
+
1028
+ .side-pane .side-pane__menu {
1029
+ list-style-type: none;
1030
+ margin: 0;
1031
+ padding: 0;
1032
+ width: 100%;
1033
+ max-width: 400px;
1034
+ float: right;
1035
+ }
1036
+
1037
+ .side-pane__title {
1038
+ padding: 0 1em;
1039
+ }
1040
+
1041
+ .side-pane .side-pane__link {
1042
+ padding: 0.5em 1em;
1043
+ display: block;
1044
+ width: 100%;
1045
+ border-radius: 5px;
1046
+ margin-bottom: 0.5em;
1047
+ color: #26353f;
1048
+ }
1049
+
1050
+ .side-pane li:hover .side-pane__link {
1051
+ background: #c9d3df;
1052
+ }
1053
+
1054
+ .side-pane li.active .side-pane__link {
1055
+ background: #0081d5;
1056
+ color: #fff;
1057
+ }
1058
+
1059
+ .side-pane li.side-pane__dropdown .side-pane__link {
1060
+ background: url("../images/icons/arrow-right.svg") no-repeat;
1061
+ background-position: center right 1em;
1062
+ background-size: 15px 15px;
1063
+ }
1064
+
1065
+ .side-pane li.side-pane__dropdown:hover .side-pane__link {
1066
+ background: #c9d3df url("../images/icons/arrow-right.svg") no-repeat;
1067
+ background-position: center right 1em;
1068
+ background-size: 15px 15px;
1069
+ }
1070
+
1071
+ .side-pane li.unfolded.side-pane__dropdown .side-pane__link,
1072
+ .side-pane li.unfolded.side-pane__dropdown:hover .side-pane__link {
1073
+ background-image: url("../images/icons/arrow-down.svg");
1074
+ background-color: transparent;
1075
+ }
1076
+
1077
+ .side-pane li.unfolded.active.side-pane__dropdown .side-pane__link {
1078
+ background-color: #0081d5;
1079
+ }
1080
+
1081
+ .side-pane__dropdown.unfolded .side-pane__submenu {
1082
+ display: block;
1083
+ }
1084
+
1085
+ .side-pane__submenu {
1086
+ padding-left: 2em;
1087
+ margin-bottom: 0.5em;
1088
+ display: none;
1089
+ }
1090
+
1091
+ .side-pane__sublink,
1092
+ .side-pane__sublink:visited {
1093
+ padding: 0.5em;
1094
+ list-style-type: none;
1095
+ color: #53657d;
1096
+ border-radius: 5px;
1097
+ }
1098
+
1099
+ .side-pane__submenu li {
1100
+ list-style-type: none;
1101
+ margin: 1em 0;
1102
+ }
1103
+
1104
+ .side-pane__submenu .side-pane__sublink:hover {
1105
+ color: #26353f;
1106
+ background: #c9d3df;
1107
+ }
1108
+
1109
+ .side-pane__submenu li.active {
1110
+ list-style-type: disc;
1111
+ color: #0081d5;
1112
+ }
1113
+
1114
+ .side-pane__submenu li.active .side-pane__sublink {
1115
+ font-weight: 700;
1116
+ color: #26353f;
1117
+ }
1118
+
1119
+ .main-pane {
1120
+ padding: 3em 5em;
1121
+ background: #fff;
1122
+ -webkit-box-flex: 1;
1123
+ -ms-flex: 1;
1124
+ flex: 1;
1125
+ }
1126
+
1127
+ .main-pane h1:first-child {
1128
+ margin-top: 0;
1129
+ }
1130
+
1131
+ @media (max-width: 749px) {
1132
+ .documentation {
1133
+ -webkit-box-orient: vertical;
1134
+ -webkit-box-direction: normal;
1135
+ -ms-flex-direction: column;
1136
+ flex-direction: column;
1137
+ }
1138
+
1139
+ .side-pane {
1140
+ border-right: none;
1141
+ border-bottom: 1px solid #c9d3df;
1142
+ -webkit-box-flex: 1;
1143
+ -ms-flex: auto;
1144
+ flex: auto;
1145
+ }
1146
+ }
1147
+
1148
+ @media (min-width: 1000px) {
1149
+ .main-pane .markdown {
1150
+ width: 80%;
1151
+ }
1152
+
1153
+ .side-pane {
1154
+ -webkit-box-flex: 0;
1155
+ -ms-flex: 0 0 350px;
1156
+ flex: 0 0 350px;
1157
+ }
1158
+ }
1159
+
1160
+ .dashboard {
1161
+ display: -webkit-box;
1162
+ display: -ms-flexbox;
1163
+ display: flex;
1164
+ -webkit-box-orient: horizontal;
1165
+ -webkit-box-direction: normal;
1166
+ -ms-flex-direction: row;
1167
+ flex-direction: row;
1168
+ -webkit-box-flex: 1;
1169
+ -ms-flex: 1 1 auto;
1170
+ flex: 1 1 auto;
1171
+ min-height: calc(100vh - 73px);
1172
+ }
1173
+
1174
+ .dashboard .side-menu {
1175
+ -webkit-box-flex: 1;
1176
+ -ms-flex: 1 1 auto;
1177
+ flex: 1 1 auto;
1178
+ background: #fff;
1179
+ }
1180
+
1181
+ .dashboard .side-menu ul {
1182
+ margin-top: 0;
1183
+ padding: 0;
1184
+ list-style-type: none;
1185
+ }
1186
+
1187
+ .dashboard .side-menu a {
1188
+ padding: 1em 2em;
1189
+ display: block;
1190
+ width: 100%;
1191
+ color: #8393a7;
1192
+ }
1193
+
1194
+ .dashboard .side-menu a.active {
1195
+ background: linear-gradient(to right, #0081d5, #0081d5 5px, #ebeff3 5px, #ebeff3);
1196
+ color: #53657d;
1197
+ }
1198
+
1199
+ .dashboard .side-menu a:hover {
1200
+ color: #0081d5;
1201
+ }
1202
+
1203
+ .dashboard .main {
1204
+ padding: 2em;
1205
+ -webkit-box-flex: 1;
1206
+ -ms-flex: 1 1 75%;
1207
+ flex: 1 1 75%;
1208
+ background: #ebeff3;
1209
+ }
1210
+
1211
+ .dashboard .main > :first-child {
1212
+ margin-top: 0;
1213
+ }
1214
+
1215
+ .dashboard table {
1216
+ -webkit-box-shadow: none;
1217
+ box-shadow: none;
1218
+ }
1219
+
1220
+ .article {
1221
+ text-rendering: optimizeLegibility;
1222
+ -webkit-font-smoothing: antialiased;
1223
+ -moz-osx-font-smoothing: grayscale;
1224
+ -moz-font-feature-settings: "liga" on;
1225
+ padding: 0;
1226
+ background: #fff;
1227
+ color: #1c1c1c;
1228
+ line-height: 1.5;
1229
+ margin: 0 auto;
1230
+ }
1231
+
1232
+ .article__hero {
1233
+ height: 38vh;
1234
+ width: 100%;
1235
+ overflow: hidden;
1236
+ position: relative;
1237
+ display: -webkit-box;
1238
+ display: -ms-flexbox;
1239
+ display: flex;
1240
+ -webkit-box-align: center;
1241
+ -ms-flex-align: center;
1242
+ align-items: center;
1243
+ -webkit-box-pack: center;
1244
+ -ms-flex-pack: center;
1245
+ justify-content: center;
1246
+ }
1247
+
1248
+ .article__hero img {
1249
+ width: 100%;
1250
+ filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.5" /><feFuncG type="linear" slope="0.5" /><feFuncB type="linear" slope="0.5" /></feComponentTransfer></filter></svg>#filter');
1251
+ -webkit-filter: brightness(0.5);
1252
+ filter: brightness(0.5);
1253
+ position: absolute;
1254
+ z-index: 5;
1255
+ }
1256
+
1257
+ .article__hero .article__container {
1258
+ z-index: 10;
1259
+ -webkit-box-align: start;
1260
+ -ms-flex-align: start;
1261
+ align-items: start;
1262
+ width: 100%;
1263
+ }
1264
+
1265
+ .article__content {
1266
+ margin: 0;
1267
+ }
1268
+
1269
+ .article__content .article__container {
1270
+ margin: 0 auto;
1271
+ padding: 2em 0 4em;
1272
+ }
1273
+
1274
+ .richtext + .article__author {
1275
+ margin-top: 1em;
1276
+ }
1277
+
1278
+ .article__author-list {
1279
+ padding-top: 1em;
1280
+ display: -webkit-box;
1281
+ display: -ms-flexbox;
1282
+ display: flex;
1283
+ -webkit-box-orient: horizontal;
1284
+ -webkit-box-direction: normal;
1285
+ -ms-flex-direction: row;
1286
+ flex-direction: row;
1287
+ -webkit-box-pack: justify;
1288
+ -ms-flex-pack: justify;
1289
+ justify-content: space-between;
1290
+ }
1291
+
1292
+ .article__author {
1293
+ display: inline-block;
1294
+ width: 50%;
1295
+ padding: 1em;
1296
+ font-size: 15px;
1297
+ }
1298
+
1299
+ .article__author + .article__author {
1300
+ margin-left: 1em;
1301
+ margin-top: 0;
1302
+ }
1303
+
1304
+ .article__author img {
1305
+ height: 32px;
1306
+ width: 32px;
1307
+ border-radius: 50%;
1308
+ display: inline-block;
1309
+ float: right;
1310
+ }
1311
+
1312
+ .article__author-info {
1313
+ display: inline-block;
1314
+ }
1315
+
1316
+ .article__author-name {
1317
+ font-weight: 700;
1318
+ }
1319
+
1320
+ .article__author-role {
1321
+ color: #8393a7;
1322
+ font-size: 0.9em;
1323
+ line-height: 0.8em;
1324
+ }
1325
+
1326
+ /* article list for blog and alike */
1327
+ .article.article__preview {
1328
+ margin: 0 auto;
1329
+ padding: 2em;
1330
+ }
1331
+
1332
+ .article__preview + .article__preview {
1333
+ margin-top: 2em;
1334
+ }
1335
+
1336
+ .article__preview .article__author {
1337
+ width: auto;
1338
+ padding: 0;
1339
+ font-size: 14px;
1340
+ }
1341
+
1342
+ .article__preview .article__author img {
1343
+ float: none;
1344
+ vertical-align: middle;
1345
+ }
1346
+
1347
+ .article__preview img + .article__author-name {
1348
+ margin-left: 0.5em;
1349
+ }
1350
+
1351
+ a.article__link {
1352
+ color: #26353f;
1353
+ }
1354
+
1355
+ a.article__link:hover {
1356
+ color: #0081d5;
1357
+ }
1358
+
1359
+ .article__title {
1360
+ margin-bottom: 0;
1361
+ }
1362
+
1363
+ .article__meta {
1364
+ margin-bottom: 1em;
1365
+ }
1366
+
1367
+ .article__thumbnail {
1368
+ width: 100%;
1369
+ height: 200px;
1370
+ overflow: hidden;
1371
+ position: relative;
1372
+ }
1373
+
1374
+ .article__thumbnail img {
1375
+ width: 100%;
1376
+ position: relative;
1377
+ top: 50%;
1378
+ -webkit-transform: translateY(-50%);
1379
+ transform: translateY(-50%);
1380
+ }
1381
+
1382
+ @media (max-width: 549px) {
1383
+ .article__container,
1384
+ .article__hero .article__container {
1385
+ width: 85%;
1386
+ padding: 0;
1387
+ }
1388
+
1389
+ .article__author-list {
1390
+ -webkit-box-orient: vertical;
1391
+ -webkit-box-direction: normal;
1392
+ -ms-flex-direction: column;
1393
+ flex-direction: column;
1394
+ }
1395
+
1396
+ .article__author-list .article__author {
1397
+ width: 100%;
1398
+ margin-left: 0;
1399
+ }
1400
+
1401
+ .article__author-list .article__author + .article__author {
1402
+ margin-top: 1em;
1403
+ margin-left: 0;
1404
+ }
1405
+ }
1406
+
1407
+ .card {
1408
+ background: #fff;
1409
+ border-radius: 2px;
1410
+ -webkit-box-shadow: 0 1px 4px #c9d3df;
1411
+ box-shadow: 0 1px 4px #c9d3df;
1412
+ position: relative;
1413
+ overflow: hidden;
1414
+ display: -webkit-box;
1415
+ display: -ms-flexbox;
1416
+ display: flex;
1417
+ -webkit-box-flex: 1;
1418
+ -ms-flex: 1;
1419
+ flex: 1;
1420
+ -webkit-box-orient: vertical;
1421
+ -webkit-box-direction: normal;
1422
+ -ms-flex-direction: column;
1423
+ flex-direction: column;
1424
+ }
1425
+
1426
+ .card + .card {
1427
+ margin-left: 2em;
1428
+ }
1429
+
1430
+ @media (max-width: 749px) {
1431
+ .card + .card {
1432
+ margin-left: 0;
1433
+ margin-top: 2em;
1434
+ }
1435
+ }
1436
+
1437
+ .card__cover {
1438
+ height: 250px;
1439
+ width: 100%;
1440
+ overflow: hidden;
1441
+ position: relative;
1442
+ }
1443
+
1444
+ .card__cover img {
1445
+ -o-object-fit: cover;
1446
+ object-fit: cover; /* will not work on IE and Edge < 16 */
1447
+ height: 100%;
1448
+ width: 100%;
1449
+ }
1450
+
1451
+ .card__content {
1452
+ padding: 2em;
1453
+ }
1454
+
1455
+ .card__content h3 {
1456
+ margin: 0;
1457
+ }
1458
+
1459
+ .card__content .card__meta {
1460
+ color: #8393a7;
1461
+ }
1462
+
1463
+ .card__content .card__meta time::after {
1464
+ content: " • ";
1465
+ }
1466
+
1467
+ .card__content :last-child {
1468
+ margin-bottom: 0;
1469
+ }
1470
+
1471
+ .modal__backdrop {
1472
+ position: fixed;
1473
+ top: 0;
1474
+ left: 0;
1475
+ background: rgba(0, 0, 0, .5);
1476
+ height: 100%;
1477
+ width: 100%;
1478
+ -webkit-box-pack: center;
1479
+ -ms-flex-pack: center;
1480
+ justify-content: center;
1481
+ -webkit-box-align: center;
1482
+ -ms-flex-align: center;
1483
+ align-items: center;
1484
+ display: none;
1485
+ z-index: 10;
1486
+ }
1487
+
1488
+ /* no js modal */
1489
+ .modal__backdrop:target {
1490
+ display: -webkit-box;
1491
+ display: -ms-flexbox;
1492
+ display: flex;
1493
+ }
1494
+
1495
+ .modal {
1496
+ border-radius: 3px;
1497
+ -webkit-box-shadow: #c9d3df;
1498
+ box-shadow: #c9d3df;
1499
+ background: #fff;
1500
+ padding: 2em;
1501
+ max-width: 32em;
1502
+ }
1503
+
1504
+ .modal > :first-child {
1505
+ margin-top: 0;
1506
+ }
1507
+
1508
+ .modal .button__group {
1509
+ display: -webkit-box;
1510
+ display: -ms-flexbox;
1511
+ display: flex;
1512
+ -webkit-box-pack: justify;
1513
+ -ms-flex-pack: justify;
1514
+ justify-content: space-between;
1515
+ margin-top: 2em;
1516
+ }
1517
+
1518
+ .modal .button__group .button {
1519
+ margin: 0;
1520
+ }
1521
+
1522
+ .modal .button__group .button + .button {
1523
+ margin-left: 1em;
1524
+ }
1525
+
1526
+ .hero {
1527
+ background: -webkit-gradient(linear, left top, right top, from(#c969a6), color-stop(15%, #e795a8), color-stop(43%, #a4cfcd), color-stop(65%, #45adc5), to(#265c9f));
1528
+ background: linear-gradient(to right, #c969a6 0%, #e795a8 15%, #a4cfcd 43%, #45adc5 65%, #265c9f 100%);
1529
+ }
1530
+
1531
+ .typography__sample {
1532
+ margin-bottom: 1em;
1533
+ }
1534
+
1535
+ .typography__sample > * {
1536
+ margin: 0;
1537
+ }
1538
+
1539
+ .color-panel {
1540
+ display: grid;
1541
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
1542
+ margin-bottom: 2em;
1543
+ }
1544
+
1545
+ .color-panel__block {
1546
+ margin-bottom: 1em;
1547
+ display: -webkit-box;
1548
+ display: -ms-flexbox;
1549
+ display: flex;
1550
+ -webkit-box-align: center;
1551
+ -ms-flex-align: center;
1552
+ align-items: center;
1553
+ }
1554
+
1555
+ .color-panel__sample {
1556
+ margin-right: 1em;
1557
+ width: 50px;
1558
+ height: 50px;
1559
+ border-radius: 2px;
1560
+ vertical-align: middle;
1561
+ }
1562
+
1563
+ .color-panel__name {
1564
+ padding: 0.5em 0;
1565
+ vertical-align: middle;
1566
+ }
1567
+
1568
+ .color-panel__name h4 {
1569
+ margin: 0;
1570
+ }
1571
+
1572
+ .color-panel__sample-double {
1573
+ display: -webkit-box;
1574
+ display: -ms-flexbox;
1575
+ display: flex;
1576
+ -webkit-box-orient: vertical;
1577
+ -webkit-box-direction: normal;
1578
+ -ms-flex-direction: column;
1579
+ flex-direction: column;
1580
+ border-radius: 2px;
1581
+ overflow: hidden;
1582
+ margin-right: 1em;
1583
+ }
1584
+
1585
+ .color-panel__sample-double .color-panel__sample {
1586
+ border-radius: 0;
1587
+ margin-right: 0;
1588
+ }
1589
+
1590
+ /* color blocks */
1591
+ .color-panel__sample.primary-medium {
1592
+ background: #0081d5;
1593
+ }
1594
+
1595
+ .color-panel__sample.primary-light {
1596
+ background: #1e90da;
1597
+ }
1598
+
1599
+ .color-panel__sample.primary-dark {
1600
+ background: #006cb0;
1601
+ }
1602
+
1603
+ .color-panel__sample.white {
1604
+ background: #fff;
1605
+ border: 1px solid #c9d3df;
1606
+ }
1607
+
1608
+ .color-panel__sample.lighter-grey {
1609
+ background: #ebeff3;
1610
+ }
1611
+
1612
+ .color-panel__sample.light-grey {
1613
+ background: #c9d3df;
1614
+ }
1615
+
1616
+ .color-panel__sample.grey {
1617
+ background: #adb9c9;
1618
+ }
1619
+
1620
+ .color-panel__sample.dark-grey {
1621
+ background: #8393a7;
1622
+ }
1623
+
1624
+ .color-panel__sample.darker-grey {
1625
+ background: #53657d;
1626
+ }
1627
+
1628
+ .color-panel__sample.almost-black {
1629
+ background: #26353f;
1630
+ }
1631
+
1632
+ .color-panel__sample.black {
1633
+ background: #1c1c1c;
1634
+ }
1635
+
1636
+ .color-panel__sample.green {
1637
+ background: #03bd5b;
1638
+ }
1639
+
1640
+ .color-panel__sample.light-green {
1641
+ background: #daf5e7;
1642
+ }
1643
+
1644
+ .color-panel__sample.orange {
1645
+ background: #ff9947;
1646
+ }
1647
+
1648
+ .color-panel__sample.light-orange {
1649
+ background: #fff0e4;
1650
+ }
1651
+
1652
+ .color-panel__sample.red {
1653
+ background: #d1335b;
1654
+ }
1655
+
1656
+ .color-panel__sample.light-red {
1657
+ background: #f8e1e7;
1658
+ }
1659
+
1660
+ .color-panel__sample.blue {
1661
+ background: #0081d5;
1662
+ }
1663
+
1664
+ .color-panel__sample.light-blue {
1665
+ background: #b4e1fa;
1666
+ }
1667
+
1668
+ .documentation {
1669
+ border-top: 1px solid #c9d3df;
1670
+ border-bottom: 1px solid #c9d3df;
1671
+ }
1672
+
1673
+ @media (max-width: 749px) {
1674
+ .color-panel {
1675
+ grid-template-columns: 1fr;
1676
+ }
1677
+ }
1678
+
1679
+ .dashboard,
1680
+ .cards {
1681
+ border-top: 1px solid #adb9c9;
1682
+ }
1683
+
1684
+ .form__group + .button {
1685
+ margin-top: 2em;
1686
+ }