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.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +2 -0
- data/_includes/footer.html +27 -0
- data/_includes/head.html +12 -0
- data/_includes/header.html +38 -0
- data/_includes/hero.html +15 -0
- data/_includes/script.html +1 -0
- data/_includes/sidebar.html +15 -0
- data/_layouts/blog.html +29 -0
- data/_layouts/default.html +61 -0
- data/_layouts/home.html +9 -0
- data/_layouts/page.html +21 -0
- data/_layouts/post.html +16 -0
- data/_sass/_variables.scss +46 -0
- data/_sass/main.scss +27 -0
- data/assets/fonts/Evolventa/Evolventa-Bold.ttf +0 -0
- data/assets/fonts/Evolventa/Evolventa-BoldOblique.ttf +0 -0
- data/assets/fonts/Evolventa/Evolventa-Oblique.ttf +0 -0
- data/assets/fonts/Evolventa/Evolventa-Regular.ttf +0 -0
- data/assets/fonts/Evolventa/gpl.txt +340 -0
- data/assets/fonts/Evolventa/lppl.txt +416 -0
- data/assets/fonts/Source Sans Pro/SIL Open Font License.txt +43 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-Black.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-BlackIt.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-Bold.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-BoldIt.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-ExtraLight.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-ExtraLightIt.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-It.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-Light.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-LightIt.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-Regular.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-Semibold.otf +0 -0
- data/assets/fonts/Source Sans Pro/SourceSansPro-SemiboldIt.otf +0 -0
- data/assets/images/datagouvfr.svg +1 -0
- data/assets/images/etalab.svg +1 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/favicons/apple-icon-180x180.png +0 -0
- data/assets/images/favicons/browserconfig.xml +9 -0
- data/assets/images/favicons/favicon-16x16.png +0 -0
- data/assets/images/favicons/favicon-32x32.png +0 -0
- data/assets/images/favicons/manifest.json +18 -0
- data/assets/images/favicons/safari-pinned-tab.svg +15 -0
- data/assets/images/icons/arrow-down.svg +1 -0
- data/assets/images/icons/arrow-right.svg +1 -0
- data/assets/images/icons/tick.svg +1 -0
- data/assets/images/logo-footer.svg +1 -0
- data/assets/images/logo-marianne.svg +1 -0
- data/assets/images/preview.png +0 -0
- data/assets/images/preview_fb.png +0 -0
- data/assets/main.scss +6 -0
- data/assets/style/main.css +1548 -0
- data/assets/style/main.min.css +1 -0
- data/assets/template.css +1686 -0
- metadata +140 -0
@@ -0,0 +1,1548 @@
|
|
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: 2.5em;
|
19
|
+
}
|
20
|
+
|
21
|
+
h2 {
|
22
|
+
font-size: 2em;
|
23
|
+
}
|
24
|
+
|
25
|
+
h3 {
|
26
|
+
font-size: 1.5em;
|
27
|
+
}
|
28
|
+
|
29
|
+
h4 {
|
30
|
+
font-size: 1.25em;
|
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 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-Regular.ttf");
|
324
|
+
font-weight: 400;
|
325
|
+
}
|
326
|
+
|
327
|
+
@font-face {
|
328
|
+
font-family: "Evolventa";
|
329
|
+
src: url("../fonts/Evolventa/Evolventa-Bold.ttf");
|
330
|
+
font-weight: 800;
|
331
|
+
}
|
332
|
+
|
333
|
+
.notification {
|
334
|
+
color: #0081d5;
|
335
|
+
background: #b4e1fa;
|
336
|
+
border: 1px solid #0081d5;
|
337
|
+
border-radius: 3px;
|
338
|
+
padding: 1em;
|
339
|
+
margin-bottom: 1em;
|
340
|
+
position: relative;
|
341
|
+
}
|
342
|
+
|
343
|
+
.notification .close {
|
344
|
+
border: 0;
|
345
|
+
background: 0;
|
346
|
+
color: currentColor;
|
347
|
+
position: absolute;
|
348
|
+
right: 1em;
|
349
|
+
}
|
350
|
+
|
351
|
+
.notification .icon {
|
352
|
+
fill: currentColor;
|
353
|
+
width: 20px;
|
354
|
+
height: 20px;
|
355
|
+
}
|
356
|
+
|
357
|
+
.notification.closable {
|
358
|
+
padding-right: 3em;
|
359
|
+
}
|
360
|
+
|
361
|
+
.notification.full-width {
|
362
|
+
width: 100%;
|
363
|
+
margin-bottom: 0;
|
364
|
+
text-align: center;
|
365
|
+
border: 0;
|
366
|
+
}
|
367
|
+
|
368
|
+
.notification.full-width.closable .close {
|
369
|
+
right: unset;
|
370
|
+
}
|
371
|
+
|
372
|
+
.notification.success {
|
373
|
+
color: #03bd5b;
|
374
|
+
background: #daf5e7;
|
375
|
+
border-color: #03bd5b;
|
376
|
+
}
|
377
|
+
|
378
|
+
.notification.warning {
|
379
|
+
color: #ff9947;
|
380
|
+
background: #fff0e4;
|
381
|
+
border-color: #ff9947;
|
382
|
+
}
|
383
|
+
|
384
|
+
.notification.error {
|
385
|
+
color: #d1335b;
|
386
|
+
background: #f8e1e7;
|
387
|
+
border-color: #d1335b;
|
388
|
+
}
|
389
|
+
|
390
|
+
.footer {
|
391
|
+
background: #26353f;
|
392
|
+
color: #fff;
|
393
|
+
padding: 2em 0;
|
394
|
+
}
|
395
|
+
|
396
|
+
.footer .container {
|
397
|
+
display: -webkit-box;
|
398
|
+
display: -ms-flexbox;
|
399
|
+
display: flex;
|
400
|
+
-webkit-box-orient: horizontal;
|
401
|
+
-webkit-box-direction: normal;
|
402
|
+
-ms-flex-flow: row wrap;
|
403
|
+
flex-flow: row wrap;
|
404
|
+
-webkit-box-pack: justify;
|
405
|
+
-ms-flex-pack: justify;
|
406
|
+
justify-content: space-between;
|
407
|
+
}
|
408
|
+
|
409
|
+
.footer ul {
|
410
|
+
list-style-type: none;
|
411
|
+
padding: 0;
|
412
|
+
margin-bottom: 0;
|
413
|
+
}
|
414
|
+
|
415
|
+
.footer__social {
|
416
|
+
margin-top: 1em;
|
417
|
+
}
|
418
|
+
|
419
|
+
.footer__social li {
|
420
|
+
display: inline;
|
421
|
+
margin-right: 1em;
|
422
|
+
}
|
423
|
+
|
424
|
+
.footer__social .icon {
|
425
|
+
width: 35px;
|
426
|
+
height: 35px;
|
427
|
+
fill: #fff;
|
428
|
+
}
|
429
|
+
|
430
|
+
.footer__links {
|
431
|
+
margin: 0;
|
432
|
+
line-height: 2em;
|
433
|
+
}
|
434
|
+
|
435
|
+
.footer__links h2 {
|
436
|
+
margin-top: 0;
|
437
|
+
margin-bottom: 0.5em;
|
438
|
+
}
|
439
|
+
|
440
|
+
.footer__links a {
|
441
|
+
color: #fff;
|
442
|
+
}
|
443
|
+
|
444
|
+
.footer__logo {
|
445
|
+
height: auto;
|
446
|
+
}
|
447
|
+
|
448
|
+
.footer__logo img {
|
449
|
+
height: 60px;
|
450
|
+
}
|
451
|
+
|
452
|
+
@media (max-width: 549px) {
|
453
|
+
.footer .container {
|
454
|
+
-webkit-box-orient: vertical;
|
455
|
+
-webkit-box-direction: normal;
|
456
|
+
-ms-flex-direction: column;
|
457
|
+
flex-direction: column;
|
458
|
+
}
|
459
|
+
|
460
|
+
.footer__links {
|
461
|
+
margin-top: 2em;
|
462
|
+
}
|
463
|
+
}
|
464
|
+
|
465
|
+
.hero {
|
466
|
+
width: 100%;
|
467
|
+
color: #fff;
|
468
|
+
background: #0081d5;
|
469
|
+
}
|
470
|
+
|
471
|
+
.hero__container {
|
472
|
+
min-height: 38vh;
|
473
|
+
display: -webkit-box;
|
474
|
+
display: -ms-flexbox;
|
475
|
+
display: flex;
|
476
|
+
-webkit-box-orient: vertical;
|
477
|
+
-webkit-box-direction: normal;
|
478
|
+
-ms-flex-direction: column;
|
479
|
+
flex-direction: column;
|
480
|
+
-webkit-box-pack: center;
|
481
|
+
-ms-flex-pack: center;
|
482
|
+
justify-content: center;
|
483
|
+
-webkit-box-align: center;
|
484
|
+
-ms-flex-align: center;
|
485
|
+
align-items: center;
|
486
|
+
padding: 2em;
|
487
|
+
}
|
488
|
+
|
489
|
+
.hero__white-background {
|
490
|
+
padding: 10px 1em;
|
491
|
+
background-color: white;
|
492
|
+
}
|
493
|
+
|
494
|
+
h1.hero__white-background {
|
495
|
+
color: #26353f;
|
496
|
+
margin: 0;
|
497
|
+
}
|
498
|
+
|
499
|
+
.hero p {
|
500
|
+
margin: 1em auto;
|
501
|
+
color: #26353f;
|
502
|
+
font-size: 1.2em;
|
503
|
+
font-style: italic;
|
504
|
+
}
|
505
|
+
|
506
|
+
.navbar {
|
507
|
+
border-bottom: 1px solid #c9d3df;
|
508
|
+
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
|
509
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
|
510
|
+
width: 100%;
|
511
|
+
background: #fff;
|
512
|
+
z-index: 100;
|
513
|
+
}
|
514
|
+
|
515
|
+
.nav-fixed {
|
516
|
+
position: fixed;
|
517
|
+
top: 0;
|
518
|
+
}
|
519
|
+
|
520
|
+
.navbar__container {
|
521
|
+
display: -webkit-box;
|
522
|
+
display: -ms-flexbox;
|
523
|
+
display: flex;
|
524
|
+
-webkit-box-pack: justify;
|
525
|
+
-ms-flex-pack: justify;
|
526
|
+
justify-content: space-between;
|
527
|
+
-ms-flex-wrap: wrap;
|
528
|
+
flex-wrap: wrap;
|
529
|
+
-webkit-box-align: center;
|
530
|
+
-ms-flex-align: center;
|
531
|
+
align-items: center;
|
532
|
+
padding: 1em;
|
533
|
+
margin: auto;
|
534
|
+
max-width: 1000px;
|
535
|
+
}
|
536
|
+
|
537
|
+
.navbar__home {
|
538
|
+
height: 40px;
|
539
|
+
}
|
540
|
+
|
541
|
+
.navbar__logo {
|
542
|
+
height: 100%;
|
543
|
+
}
|
544
|
+
|
545
|
+
.nav__links {
|
546
|
+
display: inline-block;
|
547
|
+
margin: 0;
|
548
|
+
padding: 0;
|
549
|
+
list-style-type: none;
|
550
|
+
}
|
551
|
+
|
552
|
+
.nav__item {
|
553
|
+
padding: 0;
|
554
|
+
display: inline-block;
|
555
|
+
}
|
556
|
+
|
557
|
+
.nav__item a,
|
558
|
+
.nav__item .dropdown {
|
559
|
+
color: #1c1c1c;
|
560
|
+
padding: 0.4em 0.8em;
|
561
|
+
border-radius: 3px;
|
562
|
+
}
|
563
|
+
|
564
|
+
.nav__links a::after {
|
565
|
+
content: none;
|
566
|
+
}
|
567
|
+
|
568
|
+
.nav__item a:hover,
|
569
|
+
.nav__item .dropdown:hover {
|
570
|
+
background: #ebeff3;
|
571
|
+
}
|
572
|
+
|
573
|
+
.nav__item a.active {
|
574
|
+
background: #0081d5;
|
575
|
+
color: #fff;
|
576
|
+
}
|
577
|
+
|
578
|
+
@media (max-width: 749px) {
|
579
|
+
.navbar__container {
|
580
|
+
-webkit-box-orient: vertical;
|
581
|
+
-webkit-box-direction: normal;
|
582
|
+
-ms-flex-direction: column;
|
583
|
+
flex-direction: column;
|
584
|
+
-webkit-box-align: start;
|
585
|
+
-ms-flex-align: start;
|
586
|
+
align-items: flex-start;
|
587
|
+
}
|
588
|
+
|
589
|
+
.nav__links {
|
590
|
+
padding-top: 1em;
|
591
|
+
}
|
592
|
+
}
|
593
|
+
|
594
|
+
.dropdown {
|
595
|
+
position: relative;
|
596
|
+
display: inline-block;
|
597
|
+
}
|
598
|
+
|
599
|
+
.dropdown-content {
|
600
|
+
display: none;
|
601
|
+
position: absolute;
|
602
|
+
background-color: #fff;
|
603
|
+
min-width: 110px;
|
604
|
+
text-align: center;
|
605
|
+
top: 2em;
|
606
|
+
right: 0;
|
607
|
+
-webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
|
608
|
+
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
|
609
|
+
z-index: 1;
|
610
|
+
border-radius: 3px;
|
611
|
+
}
|
612
|
+
|
613
|
+
.dropdown-content a {
|
614
|
+
color: black;
|
615
|
+
padding: 12px 16px;
|
616
|
+
text-decoration: none;
|
617
|
+
display: block;
|
618
|
+
}
|
619
|
+
|
620
|
+
.dropdown-content a:hover {
|
621
|
+
background-color: #c9d3df;
|
622
|
+
}
|
623
|
+
|
624
|
+
.dropdown:hover .dropdown-content {
|
625
|
+
display: block;
|
626
|
+
}
|
627
|
+
|
628
|
+
.row {
|
629
|
+
display: -webkit-box;
|
630
|
+
display: -ms-flexbox;
|
631
|
+
display: flex;
|
632
|
+
-webkit-box-orient: horizontal;
|
633
|
+
-webkit-box-direction: normal;
|
634
|
+
-ms-flex-direction: row;
|
635
|
+
flex-direction: row;
|
636
|
+
-webkit-box-pack: justify;
|
637
|
+
-ms-flex-pack: justify;
|
638
|
+
justify-content: space-between;
|
639
|
+
-webkit-box-align: stretch;
|
640
|
+
-ms-flex-align: stretch;
|
641
|
+
align-items: stretch;
|
642
|
+
width: 100%;
|
643
|
+
}
|
644
|
+
|
645
|
+
.row .column {
|
646
|
+
margin: 0 2em;
|
647
|
+
max-width: 50em;
|
648
|
+
}
|
649
|
+
|
650
|
+
.row .column + .column {
|
651
|
+
margin-left: 2em;
|
652
|
+
}
|
653
|
+
|
654
|
+
@media (max-width: 749px) {
|
655
|
+
.row {
|
656
|
+
-webkit-box-orient: vertical;
|
657
|
+
-webkit-box-direction: normal;
|
658
|
+
-ms-flex-direction: column;
|
659
|
+
flex-direction: column;
|
660
|
+
}
|
661
|
+
|
662
|
+
.row .column:not(:last-child) {
|
663
|
+
margin-bottom: 2em;
|
664
|
+
}
|
665
|
+
|
666
|
+
.row p + p {
|
667
|
+
margin-top: 1em;
|
668
|
+
}
|
669
|
+
}
|
670
|
+
|
671
|
+
.column img {
|
672
|
+
width: 100%;
|
673
|
+
}
|
674
|
+
|
675
|
+
.panel {
|
676
|
+
background: #fff;
|
677
|
+
border-radius: 2px;
|
678
|
+
-webkit-box-shadow: 0 1px 4px #c9d3df;
|
679
|
+
box-shadow: 0 1px 4px #c9d3df;
|
680
|
+
padding: 2em;
|
681
|
+
position: relative;
|
682
|
+
}
|
683
|
+
|
684
|
+
.panel + * {
|
685
|
+
margin-top: 2em;
|
686
|
+
}
|
687
|
+
|
688
|
+
.panel > :first-child {
|
689
|
+
margin-top: 0;
|
690
|
+
}
|
691
|
+
|
692
|
+
.panel > :last-child {
|
693
|
+
margin-bottom: 0;
|
694
|
+
}
|
695
|
+
|
696
|
+
.panel__header::after {
|
697
|
+
content: '';
|
698
|
+
display: block;
|
699
|
+
width: calc(100% + 4em);
|
700
|
+
position: relative;
|
701
|
+
left: -2em;
|
702
|
+
border-bottom: 1px solid #adb9c9;
|
703
|
+
margin-bottom: 2em;
|
704
|
+
}
|
705
|
+
|
706
|
+
.panel__header h3 {
|
707
|
+
display: inline-block;
|
708
|
+
}
|
709
|
+
|
710
|
+
.panel__header h3:first-of-type {
|
711
|
+
margin-top: 0;
|
712
|
+
}
|
713
|
+
|
714
|
+
.panel__header-extra {
|
715
|
+
margin-left: 1em;
|
716
|
+
color: #8393a7;
|
717
|
+
}
|
718
|
+
|
719
|
+
section {
|
720
|
+
padding: 5em 0;
|
721
|
+
background-color: #fff;
|
722
|
+
color: #26353f;
|
723
|
+
}
|
724
|
+
|
725
|
+
.section-grey {
|
726
|
+
background-color: #ebeff3;
|
727
|
+
color: #1c1c1c;
|
728
|
+
}
|
729
|
+
|
730
|
+
.section-dark {
|
731
|
+
background-color: #1c1c1c;
|
732
|
+
color: #fff;
|
733
|
+
}
|
734
|
+
|
735
|
+
.section-color {
|
736
|
+
background-color: #0081d5;
|
737
|
+
color: #fff;
|
738
|
+
}
|
739
|
+
|
740
|
+
.section__subtitle {
|
741
|
+
margin: 0 auto 2em;
|
742
|
+
max-width: 640px;
|
743
|
+
font-size: 1.3em;
|
744
|
+
font-style: italic;
|
745
|
+
text-align: center;
|
746
|
+
margin-bottom: 0;
|
747
|
+
}
|
748
|
+
|
749
|
+
.section__subtitle:not(:last-child) {
|
750
|
+
margin-bottom: 3em;
|
751
|
+
}
|
752
|
+
|
753
|
+
.section__title + .section__subtitle {
|
754
|
+
margin-top: -3em;
|
755
|
+
}
|
756
|
+
|
757
|
+
.section__title {
|
758
|
+
margin: 0 0 3em;
|
759
|
+
text-align: center;
|
760
|
+
}
|
761
|
+
|
762
|
+
form {
|
763
|
+
max-width: 520px;
|
764
|
+
margin: 0 auto;
|
765
|
+
}
|
766
|
+
|
767
|
+
input,
|
768
|
+
textarea,
|
769
|
+
select {
|
770
|
+
width: 100%;
|
771
|
+
outline: none;
|
772
|
+
padding: 8px 14px;
|
773
|
+
font: inherit;
|
774
|
+
line-height: 1.6;
|
775
|
+
color: #1c1c1c;
|
776
|
+
border-radius: 3px;
|
777
|
+
border: 1px solid #adb9c9;
|
778
|
+
background: #fff;
|
779
|
+
vertical-align: middle;
|
780
|
+
position: relative;
|
781
|
+
}
|
782
|
+
|
783
|
+
input:focus,
|
784
|
+
textarea:focus,
|
785
|
+
select:focus {
|
786
|
+
border-color: #0081d5;
|
787
|
+
-webkit-transition: border-color 0.2s ease-out;
|
788
|
+
transition: border-color 0.2s ease-out;
|
789
|
+
-webkit-box-shadow: 0 0 1px 1px #b4e1fa;
|
790
|
+
box-shadow: 0 0 1px 1px #b4e1fa;
|
791
|
+
}
|
792
|
+
|
793
|
+
input:disabled,
|
794
|
+
select:disabled {
|
795
|
+
background-color: #ebeff3;
|
796
|
+
}
|
797
|
+
|
798
|
+
input[type=radio],
|
799
|
+
input[type=checkbox] {
|
800
|
+
margin-right: 6px;
|
801
|
+
margin-top: 0;
|
802
|
+
}
|
803
|
+
|
804
|
+
input[type=radio] {
|
805
|
+
height: 20px;
|
806
|
+
width: 20px;
|
807
|
+
border-radius: 50%;
|
808
|
+
display: inline-block;
|
809
|
+
-webkit-appearance: none;
|
810
|
+
-moz-appearance: none;
|
811
|
+
appearance: none;
|
812
|
+
padding: 0;
|
813
|
+
}
|
814
|
+
|
815
|
+
input[type=radio]::before {
|
816
|
+
content: '';
|
817
|
+
border-color: #0081d5;
|
818
|
+
border-radius: 50%;
|
819
|
+
position: absolute;
|
820
|
+
top: 5px;
|
821
|
+
left: 5px;
|
822
|
+
width: 8px;
|
823
|
+
height: 8px;
|
824
|
+
-webkit-transform: scale(0);
|
825
|
+
transform: scale(0);
|
826
|
+
}
|
827
|
+
|
828
|
+
input[type=radio]:checked {
|
829
|
+
background-color: #fff;
|
830
|
+
border-color: #0081d5;
|
831
|
+
opacity: 1;
|
832
|
+
}
|
833
|
+
|
834
|
+
input[type=radio]:checked::before {
|
835
|
+
background-color: #0081d5;
|
836
|
+
-webkit-transform: scale(1);
|
837
|
+
transform: scale(1);
|
838
|
+
-webkit-transition: -webkit-transform 0.2s ease-out;
|
839
|
+
transition: -webkit-transform 0.2s ease-out;
|
840
|
+
transition: transform 0.2s ease-out;
|
841
|
+
transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
|
842
|
+
}
|
843
|
+
|
844
|
+
input[type="checkbox"] {
|
845
|
+
-webkit-appearance: none;
|
846
|
+
-moz-appearance: none;
|
847
|
+
appearance: none;
|
848
|
+
height: 22px;
|
849
|
+
width: 22px;
|
850
|
+
padding: 0;
|
851
|
+
}
|
852
|
+
|
853
|
+
input[type="checkbox"]:checked {
|
854
|
+
background-color: #0081d5;
|
855
|
+
border-color: #0081d5;
|
856
|
+
opacity: 1;
|
857
|
+
-webkit-transition: border-color 0.2s ease-in, background-color 0.2s ease-out;
|
858
|
+
transition: border-color 0.2s ease-in, background-color 0.2s ease-out;
|
859
|
+
}
|
860
|
+
|
861
|
+
input[type="checkbox"]::before {
|
862
|
+
-webkit-transform: scale(0);
|
863
|
+
transform: scale(0);
|
864
|
+
content: '';
|
865
|
+
position: absolute;
|
866
|
+
top: 3px;
|
867
|
+
left: 3px;
|
868
|
+
height: 14px;
|
869
|
+
width: 14px;
|
870
|
+
background: url("../images/icons/tick.svg") center center no-repeat;
|
871
|
+
}
|
872
|
+
|
873
|
+
input[type="checkbox"]:checked::before {
|
874
|
+
color: #fff;
|
875
|
+
display: block;
|
876
|
+
-webkit-transform: scale(1);
|
877
|
+
transform: scale(1);
|
878
|
+
-webkit-transition: -webkit-transform 0.2s ease-out;
|
879
|
+
transition: -webkit-transform 0.2s ease-out;
|
880
|
+
transition: transform 0.2s ease-out;
|
881
|
+
transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
|
882
|
+
}
|
883
|
+
|
884
|
+
select {
|
885
|
+
-webkit-appearance: none;
|
886
|
+
-moz-appearance: none;
|
887
|
+
appearance: none;
|
888
|
+
background: #fff url("../images/icons/arrow-down.svg") no-repeat;
|
889
|
+
background-position: center right 1em;
|
890
|
+
background-size: 15px;
|
891
|
+
padding-right: 45px;
|
892
|
+
border-radius: 3px;
|
893
|
+
width: auto;
|
894
|
+
}
|
895
|
+
|
896
|
+
select:focus {
|
897
|
+
outline: none;
|
898
|
+
}
|
899
|
+
|
900
|
+
select:-moz-focusring {
|
901
|
+
color: transparent;
|
902
|
+
text-shadow: 0 0 0 #000;
|
903
|
+
}
|
904
|
+
|
905
|
+
label,
|
906
|
+
legend {
|
907
|
+
display: block;
|
908
|
+
margin-bottom: 0.5em;
|
909
|
+
color: #26353f;
|
910
|
+
}
|
911
|
+
|
912
|
+
label.label-inline {
|
913
|
+
display: inline;
|
914
|
+
color: #1c1c1c;
|
915
|
+
}
|
916
|
+
|
917
|
+
.label-inline + input[type=radio],
|
918
|
+
.label-inline + input[type=checkbox] {
|
919
|
+
margin-left: 10px;
|
920
|
+
}
|
921
|
+
|
922
|
+
.form__container {
|
923
|
+
max-width: 30em;
|
924
|
+
margin: auto;
|
925
|
+
}
|
926
|
+
|
927
|
+
.form__group {
|
928
|
+
position: relative;
|
929
|
+
display: block;
|
930
|
+
}
|
931
|
+
|
932
|
+
.form__group + .form__group {
|
933
|
+
margin-top: 2em;
|
934
|
+
}
|
935
|
+
|
936
|
+
fieldset {
|
937
|
+
border: none;
|
938
|
+
margin: 0;
|
939
|
+
padding: 0;
|
940
|
+
width: 100%;
|
941
|
+
}
|
942
|
+
|
943
|
+
.overlay-button {
|
944
|
+
position: absolute;
|
945
|
+
right: 21px;
|
946
|
+
top: 12px;
|
947
|
+
background: 0;
|
948
|
+
border: 0;
|
949
|
+
width: 15px;
|
950
|
+
height: 15px;
|
951
|
+
}
|
952
|
+
|
953
|
+
.search__group {
|
954
|
+
position: relative;
|
955
|
+
}
|
956
|
+
|
957
|
+
.overlayed-button .icon-search {
|
958
|
+
height: 15px;
|
959
|
+
width: 15px;
|
960
|
+
}
|
961
|
+
|
962
|
+
.input__group {
|
963
|
+
display: -webkit-box;
|
964
|
+
display: -ms-flexbox;
|
965
|
+
display: flex;
|
966
|
+
-webkit-box-orient: horizontal;
|
967
|
+
-webkit-box-direction: normal;
|
968
|
+
-ms-flex-direction: row;
|
969
|
+
flex-direction: row;
|
970
|
+
}
|
971
|
+
|
972
|
+
.input__group .icon-button,
|
973
|
+
.input__group .icon-button:active {
|
974
|
+
margin-left: 1em;
|
975
|
+
padding: 0 0.8em;
|
976
|
+
}
|
977
|
+
|
978
|
+
.input__group .icon-button .icon {
|
979
|
+
width: 16px;
|
980
|
+
height: 16px;
|
981
|
+
}
|
982
|
+
|
983
|
+
.richtext img {
|
984
|
+
/* Prevent larger images to break layout */
|
985
|
+
max-width: 100%;
|
986
|
+
|
987
|
+
/* Center images smaller than width */
|
988
|
+
margin: auto;
|
989
|
+
display: block;
|
990
|
+
}
|
991
|
+
|
992
|
+
/* Allow images legends with the following syntax:
|
993
|
+

|
994
|
+
*image_caption* */
|
995
|
+
.richtext img + em {
|
996
|
+
display: block;
|
997
|
+
text-align: center;
|
998
|
+
margin: 0.3em 0.1em;
|
999
|
+
}
|
1000
|
+
|
1001
|
+
/* Disable lists default indentation */
|
1002
|
+
.richtext ol,
|
1003
|
+
.richtext ul {
|
1004
|
+
margin: 0;
|
1005
|
+
padding: 0 0 0 1em;
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
.richtext li {
|
1009
|
+
padding-left: 0.5em;
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
/* Lighter inline code element */
|
1013
|
+
.richtext code {
|
1014
|
+
padding: 0 0.1em;
|
1015
|
+
border-radius: 0.2em;
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
/* But <pre> block should be spaced */
|
1019
|
+
.richtext pre {
|
1020
|
+
padding: 0.5em;
|
1021
|
+
margin: 0.5em 0;
|
1022
|
+
border-radius: 0.5em;
|
1023
|
+
background-color: #ebeff3;
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
.documentation {
|
1027
|
+
display: -webkit-box;
|
1028
|
+
display: -ms-flexbox;
|
1029
|
+
display: flex;
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
.side-pane {
|
1033
|
+
background: #ebeff3;
|
1034
|
+
padding: 2em;
|
1035
|
+
-webkit-box-flex: 0;
|
1036
|
+
-ms-flex: 0 0 25%;
|
1037
|
+
flex: 0 0 25%;
|
1038
|
+
border-right: 1px solid #c9d3df;
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
.side-pane .side-pane__menu {
|
1042
|
+
list-style-type: none;
|
1043
|
+
margin: 0;
|
1044
|
+
padding: 0;
|
1045
|
+
width: 100%;
|
1046
|
+
max-width: 400px;
|
1047
|
+
float: right;
|
1048
|
+
}
|
1049
|
+
|
1050
|
+
.side-pane__title {
|
1051
|
+
padding: 0 1em;
|
1052
|
+
}
|
1053
|
+
|
1054
|
+
.side-pane .side-pane__link {
|
1055
|
+
padding: 0.5em 1em;
|
1056
|
+
display: block;
|
1057
|
+
width: 100%;
|
1058
|
+
border-radius: 5px;
|
1059
|
+
margin-bottom: 0.5em;
|
1060
|
+
color: #26353f;
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
.side-pane li:hover .side-pane__link {
|
1064
|
+
background: #c9d3df;
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
.side-pane li.active .side-pane__link {
|
1068
|
+
background: #0081d5;
|
1069
|
+
color: #fff;
|
1070
|
+
}
|
1071
|
+
|
1072
|
+
.side-pane li.side-pane__dropdown .side-pane__link {
|
1073
|
+
background: url("../images/icons/arrow-right.svg") no-repeat;
|
1074
|
+
background-position: center right 1em;
|
1075
|
+
background-size: 15px 15px;
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
.side-pane li.side-pane__dropdown:hover .side-pane__link {
|
1079
|
+
background: #c9d3df url("../images/icons/arrow-right.svg") no-repeat;
|
1080
|
+
background-position: center right 1em;
|
1081
|
+
background-size: 15px 15px;
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
.side-pane li.unfolded.side-pane__dropdown .side-pane__link,
|
1085
|
+
.side-pane li.unfolded.side-pane__dropdown:hover .side-pane__link {
|
1086
|
+
background-image: url("../images/icons/arrow-down.svg");
|
1087
|
+
background-color: transparent;
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
.side-pane li.unfolded.active.side-pane__dropdown .side-pane__link {
|
1091
|
+
background-color: #0081d5;
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
.side-pane__dropdown.unfolded .side-pane__submenu {
|
1095
|
+
display: block;
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
.side-pane__submenu {
|
1099
|
+
padding-left: 2em;
|
1100
|
+
margin-bottom: 0.5em;
|
1101
|
+
display: none;
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
.side-pane__sublink,
|
1105
|
+
.side-pane__sublink:visited {
|
1106
|
+
padding: 0.5em;
|
1107
|
+
list-style-type: none;
|
1108
|
+
color: #53657d;
|
1109
|
+
border-radius: 5px;
|
1110
|
+
}
|
1111
|
+
|
1112
|
+
.side-pane__submenu li {
|
1113
|
+
list-style-type: none;
|
1114
|
+
margin: 1em 0;
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
.side-pane__submenu .side-pane__sublink:hover {
|
1118
|
+
color: #26353f;
|
1119
|
+
background: #c9d3df;
|
1120
|
+
}
|
1121
|
+
|
1122
|
+
.side-pane__submenu li.active {
|
1123
|
+
list-style-type: disc;
|
1124
|
+
color: #0081d5;
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
.side-pane__submenu li.active .side-pane__sublink {
|
1128
|
+
font-weight: 700;
|
1129
|
+
color: #26353f;
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
.main-pane {
|
1133
|
+
padding: 3em 5em;
|
1134
|
+
background: #fff;
|
1135
|
+
-webkit-box-flex: 1;
|
1136
|
+
-ms-flex: 1;
|
1137
|
+
flex: 1;
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
.main-pane h1:first-child {
|
1141
|
+
margin-top: 0;
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
@media (max-width: 749px) {
|
1145
|
+
.documentation {
|
1146
|
+
-webkit-box-orient: vertical;
|
1147
|
+
-webkit-box-direction: normal;
|
1148
|
+
-ms-flex-direction: column;
|
1149
|
+
flex-direction: column;
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
.side-pane {
|
1153
|
+
border-right: none;
|
1154
|
+
border-bottom: 1px solid #c9d3df;
|
1155
|
+
-webkit-box-flex: 1;
|
1156
|
+
-ms-flex: auto;
|
1157
|
+
flex: auto;
|
1158
|
+
}
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
@media (min-width: 1000px) {
|
1162
|
+
.main-pane .markdown {
|
1163
|
+
width: 80%;
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
.side-pane {
|
1167
|
+
-webkit-box-flex: 0;
|
1168
|
+
-ms-flex: 0 0 350px;
|
1169
|
+
flex: 0 0 350px;
|
1170
|
+
}
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
.dashboard {
|
1174
|
+
display: -webkit-box;
|
1175
|
+
display: -ms-flexbox;
|
1176
|
+
display: flex;
|
1177
|
+
-webkit-box-orient: horizontal;
|
1178
|
+
-webkit-box-direction: normal;
|
1179
|
+
-ms-flex-direction: row;
|
1180
|
+
flex-direction: row;
|
1181
|
+
-webkit-box-flex: 1;
|
1182
|
+
-ms-flex: 1 1 auto;
|
1183
|
+
flex: 1 1 auto;
|
1184
|
+
min-height: calc(100vh - 73px);
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
.dashboard .side-menu {
|
1188
|
+
-webkit-box-flex: 1;
|
1189
|
+
-ms-flex: 1 1 auto;
|
1190
|
+
flex: 1 1 auto;
|
1191
|
+
background: #fff;
|
1192
|
+
}
|
1193
|
+
|
1194
|
+
.dashboard .side-menu ul {
|
1195
|
+
margin-top: 0;
|
1196
|
+
padding: 0;
|
1197
|
+
list-style-type: none;
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
.dashboard .side-menu a {
|
1201
|
+
padding: 1em 2em;
|
1202
|
+
display: block;
|
1203
|
+
width: 100%;
|
1204
|
+
color: #8393a7;
|
1205
|
+
}
|
1206
|
+
|
1207
|
+
.dashboard .side-menu a.active {
|
1208
|
+
background: linear-gradient(to right, #0081d5, #0081d5 5px, #ebeff3 5px, #ebeff3);
|
1209
|
+
color: #53657d;
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
.dashboard .side-menu a:hover {
|
1213
|
+
color: #0081d5;
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
.dashboard .main {
|
1217
|
+
padding: 2em;
|
1218
|
+
-webkit-box-flex: 1;
|
1219
|
+
-ms-flex: 1 1 75%;
|
1220
|
+
flex: 1 1 75%;
|
1221
|
+
background: #ebeff3;
|
1222
|
+
}
|
1223
|
+
|
1224
|
+
.dashboard .main > :first-child {
|
1225
|
+
margin-top: 0;
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
.dashboard table {
|
1229
|
+
-webkit-box-shadow: none;
|
1230
|
+
box-shadow: none;
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
.article {
|
1234
|
+
text-rendering: optimizeLegibility;
|
1235
|
+
-webkit-font-smoothing: antialiased;
|
1236
|
+
-moz-osx-font-smoothing: grayscale;
|
1237
|
+
-moz-font-feature-settings: "liga" on;
|
1238
|
+
padding: 0;
|
1239
|
+
background: #fff;
|
1240
|
+
color: #1c1c1c;
|
1241
|
+
line-height: 1.5;
|
1242
|
+
margin: 0 auto;
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
.article__hero {
|
1246
|
+
height: 38vh;
|
1247
|
+
width: 100%;
|
1248
|
+
overflow: hidden;
|
1249
|
+
position: relative;
|
1250
|
+
display: -webkit-box;
|
1251
|
+
display: -ms-flexbox;
|
1252
|
+
display: flex;
|
1253
|
+
-webkit-box-align: center;
|
1254
|
+
-ms-flex-align: center;
|
1255
|
+
align-items: center;
|
1256
|
+
-webkit-box-pack: center;
|
1257
|
+
-ms-flex-pack: center;
|
1258
|
+
justify-content: center;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
.article__hero::before {
|
1262
|
+
position: absolute;
|
1263
|
+
display: block;
|
1264
|
+
content: '';
|
1265
|
+
top: 0;
|
1266
|
+
left: 0;
|
1267
|
+
width: 100%;
|
1268
|
+
height: 100%;
|
1269
|
+
background: rgba(0, 84, 138, .8);
|
1270
|
+
z-index: 6;
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
.article__hero img {
|
1274
|
+
width: 100%;
|
1275
|
+
position: absolute;
|
1276
|
+
}
|
1277
|
+
|
1278
|
+
.article__hero .article__container {
|
1279
|
+
z-index: 10;
|
1280
|
+
-webkit-box-align: start;
|
1281
|
+
-ms-flex-align: start;
|
1282
|
+
align-items: start;
|
1283
|
+
width: 100%;
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
.article__content {
|
1287
|
+
margin: 0;
|
1288
|
+
}
|
1289
|
+
|
1290
|
+
.article__content .article__container {
|
1291
|
+
margin: 0 auto;
|
1292
|
+
padding: 2em 0 4em;
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
.richtext + .article__author {
|
1296
|
+
margin-top: 1em;
|
1297
|
+
}
|
1298
|
+
|
1299
|
+
.article__author-list {
|
1300
|
+
padding-top: 1em;
|
1301
|
+
display: -webkit-box;
|
1302
|
+
display: -ms-flexbox;
|
1303
|
+
display: flex;
|
1304
|
+
-webkit-box-orient: horizontal;
|
1305
|
+
-webkit-box-direction: normal;
|
1306
|
+
-ms-flex-direction: row;
|
1307
|
+
flex-direction: row;
|
1308
|
+
-webkit-box-pack: justify;
|
1309
|
+
-ms-flex-pack: justify;
|
1310
|
+
justify-content: space-between;
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
.article__author {
|
1314
|
+
display: inline-block;
|
1315
|
+
width: 50%;
|
1316
|
+
padding: 1em;
|
1317
|
+
font-size: 15px;
|
1318
|
+
}
|
1319
|
+
|
1320
|
+
.article__author + .article__author {
|
1321
|
+
margin-left: 1em;
|
1322
|
+
margin-top: 0;
|
1323
|
+
}
|
1324
|
+
|
1325
|
+
.article__author img {
|
1326
|
+
height: 32px;
|
1327
|
+
width: 32px;
|
1328
|
+
border-radius: 50%;
|
1329
|
+
display: inline-block;
|
1330
|
+
float: right;
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
.article__author-info {
|
1334
|
+
display: inline-block;
|
1335
|
+
}
|
1336
|
+
|
1337
|
+
.article__author-name {
|
1338
|
+
font-weight: 700;
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
.article__author-role {
|
1342
|
+
color: #8393a7;
|
1343
|
+
font-size: 0.9em;
|
1344
|
+
line-height: 0.8em;
|
1345
|
+
}
|
1346
|
+
|
1347
|
+
/* article list for blog and alike */
|
1348
|
+
.article.article__preview {
|
1349
|
+
margin: 0 auto;
|
1350
|
+
padding: 2em;
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
.article__preview + .article__preview {
|
1354
|
+
margin-top: 2em;
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
.article__preview .article__author {
|
1358
|
+
width: auto;
|
1359
|
+
padding: 0;
|
1360
|
+
font-size: 14px;
|
1361
|
+
}
|
1362
|
+
|
1363
|
+
.article__preview .article__author img {
|
1364
|
+
float: none;
|
1365
|
+
vertical-align: middle;
|
1366
|
+
}
|
1367
|
+
|
1368
|
+
.article__preview img + .article__author-name {
|
1369
|
+
margin-left: 0.5em;
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
a.article__link {
|
1373
|
+
color: #26353f;
|
1374
|
+
}
|
1375
|
+
|
1376
|
+
a.article__link:hover {
|
1377
|
+
color: #0081d5;
|
1378
|
+
}
|
1379
|
+
|
1380
|
+
.article__title {
|
1381
|
+
margin-top: 0.5em;
|
1382
|
+
margin-bottom: 0;
|
1383
|
+
line-height: 1.3em;
|
1384
|
+
}
|
1385
|
+
|
1386
|
+
.article__meta {
|
1387
|
+
margin-bottom: 1em;
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
.article__thumbnail {
|
1391
|
+
width: 100%;
|
1392
|
+
height: 200px;
|
1393
|
+
overflow: hidden;
|
1394
|
+
position: relative;
|
1395
|
+
}
|
1396
|
+
|
1397
|
+
.article__thumbnail img {
|
1398
|
+
width: 100%;
|
1399
|
+
position: relative;
|
1400
|
+
top: 50%;
|
1401
|
+
-webkit-transform: translateY(-50%);
|
1402
|
+
transform: translateY(-50%);
|
1403
|
+
}
|
1404
|
+
|
1405
|
+
@media (max-width: 549px) {
|
1406
|
+
.article__container,
|
1407
|
+
.article__hero .article__container {
|
1408
|
+
width: 85%;
|
1409
|
+
padding: 0;
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
.article__author-list {
|
1413
|
+
-webkit-box-orient: vertical;
|
1414
|
+
-webkit-box-direction: normal;
|
1415
|
+
-ms-flex-direction: column;
|
1416
|
+
flex-direction: column;
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
.article__author-list .article__author {
|
1420
|
+
width: 100%;
|
1421
|
+
margin-left: 0;
|
1422
|
+
}
|
1423
|
+
|
1424
|
+
.article__author-list .article__author + .article__author {
|
1425
|
+
margin-top: 1em;
|
1426
|
+
margin-left: 0;
|
1427
|
+
}
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
.card {
|
1431
|
+
background: #fff;
|
1432
|
+
border-radius: 2px;
|
1433
|
+
-webkit-box-shadow: 0 1px 4px #c9d3df;
|
1434
|
+
box-shadow: 0 1px 4px #c9d3df;
|
1435
|
+
position: relative;
|
1436
|
+
overflow: hidden;
|
1437
|
+
display: -webkit-box;
|
1438
|
+
display: -ms-flexbox;
|
1439
|
+
display: flex;
|
1440
|
+
-webkit-box-flex: 1;
|
1441
|
+
-ms-flex: 1;
|
1442
|
+
flex: 1;
|
1443
|
+
-webkit-box-orient: vertical;
|
1444
|
+
-webkit-box-direction: normal;
|
1445
|
+
-ms-flex-direction: column;
|
1446
|
+
flex-direction: column;
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
.card + .card {
|
1450
|
+
margin-left: 2em;
|
1451
|
+
}
|
1452
|
+
|
1453
|
+
@media (max-width: 749px) {
|
1454
|
+
.card + .card {
|
1455
|
+
margin-left: 0;
|
1456
|
+
margin-top: 2em;
|
1457
|
+
}
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
.card__cover {
|
1461
|
+
height: 250px;
|
1462
|
+
width: 100%;
|
1463
|
+
overflow: hidden;
|
1464
|
+
position: relative;
|
1465
|
+
}
|
1466
|
+
|
1467
|
+
.card__cover img {
|
1468
|
+
-o-object-fit: cover;
|
1469
|
+
object-fit: cover; /* will not work on IE and Edge < 16 */
|
1470
|
+
height: 100%;
|
1471
|
+
width: 100%;
|
1472
|
+
}
|
1473
|
+
|
1474
|
+
.card__content {
|
1475
|
+
padding: 2em;
|
1476
|
+
}
|
1477
|
+
|
1478
|
+
.card__content h3 {
|
1479
|
+
margin: 0;
|
1480
|
+
}
|
1481
|
+
|
1482
|
+
.card__content .card__meta {
|
1483
|
+
color: #8393a7;
|
1484
|
+
}
|
1485
|
+
|
1486
|
+
.card__content .card__meta time::after {
|
1487
|
+
content: " • ";
|
1488
|
+
}
|
1489
|
+
|
1490
|
+
.card__content :last-child {
|
1491
|
+
margin-bottom: 0;
|
1492
|
+
}
|
1493
|
+
|
1494
|
+
.modal__backdrop {
|
1495
|
+
position: fixed;
|
1496
|
+
top: 0;
|
1497
|
+
left: 0;
|
1498
|
+
background: rgba(0, 0, 0, .5);
|
1499
|
+
height: 100%;
|
1500
|
+
width: 100%;
|
1501
|
+
-webkit-box-pack: center;
|
1502
|
+
-ms-flex-pack: center;
|
1503
|
+
justify-content: center;
|
1504
|
+
-webkit-box-align: center;
|
1505
|
+
-ms-flex-align: center;
|
1506
|
+
align-items: center;
|
1507
|
+
display: none;
|
1508
|
+
z-index: 10;
|
1509
|
+
}
|
1510
|
+
|
1511
|
+
/* no js modal */
|
1512
|
+
.modal__backdrop:target {
|
1513
|
+
display: -webkit-box;
|
1514
|
+
display: -ms-flexbox;
|
1515
|
+
display: flex;
|
1516
|
+
}
|
1517
|
+
|
1518
|
+
.modal {
|
1519
|
+
border-radius: 3px;
|
1520
|
+
-webkit-box-shadow: #c9d3df;
|
1521
|
+
box-shadow: #c9d3df;
|
1522
|
+
background: #fff;
|
1523
|
+
padding: 2em;
|
1524
|
+
max-width: 32em;
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
.modal > :first-child {
|
1528
|
+
margin-top: 0;
|
1529
|
+
}
|
1530
|
+
|
1531
|
+
.modal .button__group {
|
1532
|
+
display: -webkit-box;
|
1533
|
+
display: -ms-flexbox;
|
1534
|
+
display: flex;
|
1535
|
+
-webkit-box-pack: justify;
|
1536
|
+
-ms-flex-pack: justify;
|
1537
|
+
justify-content: space-between;
|
1538
|
+
margin-top: 2em;
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
.modal .button__group .button {
|
1542
|
+
margin: 0;
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
.modal .button__group .button + .button {
|
1546
|
+
margin-left: 1em;
|
1547
|
+
}
|
1548
|
+
|