pdap-design-system 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,726 @@
1
+ /* These were originally created in webflow. */
2
+ /* Anything we needed from webflow.css was added here, so that's why there are some w- classes. */
3
+
4
+ * {
5
+ -webkit-box-sizing: border-box;
6
+ -moz-box-sizing: border-box;
7
+ box-sizing: border-box;
8
+ }
9
+ html {
10
+ height: 100%;
11
+ }
12
+ body {
13
+ margin: 0;
14
+ min-height: 100%;
15
+ background-color: #fffbfa;
16
+ font-family: 'Libre Franklin', sans-serif;
17
+ color: #000;
18
+ font-size: 26px;
19
+ line-height: 1.5;
20
+ font-weight: 300;
21
+ }
22
+ img {
23
+ max-width: 100%;
24
+ vertical-align: middle;
25
+ display: inline-block;
26
+ }
27
+ .button {
28
+ background-color: #d5a23c;
29
+ display: inline-block;
30
+ padding: 9px 25px;
31
+ margin: 5px 0px;
32
+ width:auto;
33
+ color: white;
34
+ font-size: 20px;
35
+ font-weight: 600;
36
+ text-align: center;
37
+ border: 0;
38
+ line-height: inherit;
39
+ text-decoration: none;
40
+ cursor: pointer;
41
+ border-radius: 0;
42
+ width: auto;
43
+ }
44
+ .button-outline {
45
+ background-color:#fff;
46
+ border: 2px solid #d5a23c;
47
+ color: #d5a23c
48
+ }
49
+ input.button {
50
+ -webkit-appearance: button;
51
+ }
52
+ h1 {
53
+ margin-top: 50px;
54
+ margin-bottom: 15px;
55
+ font-size: 42px;
56
+ line-height: 1.2;
57
+ font-weight: 500;
58
+ }
59
+ h2 {
60
+ margin-top: 32px;
61
+ margin-bottom: 15px;
62
+ font-size: 32px;
63
+ line-height: 1.2;
64
+ font-weight: 700;
65
+ }
66
+ h3 {
67
+ margin-top: 30px;
68
+ margin-bottom: 10px;
69
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
70
+ color: #512a4f;
71
+ font-size: 18px;
72
+ line-height: 1.2;
73
+ font-weight: 800;
74
+ letter-spacing: 0.1em;
75
+ text-transform: uppercase;
76
+ max-width:43ch;
77
+ }
78
+ h4 {
79
+ margin-top: 10px;
80
+ margin-bottom: 10px;
81
+ font-size: 18px;
82
+ line-height: 1.2;
83
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
84
+ color: #512a4f;
85
+ font-weight: 600;
86
+ letter-spacing: 0.07em;
87
+ text-transform: uppercase;
88
+ }
89
+ h5 {
90
+ margin-top: 10px;
91
+ margin-bottom: 10px;
92
+ font-family: 'Libre Franklin', sans-serif;
93
+ font-size: 26px;
94
+ line-height: 1.2;
95
+ font-style: italic;
96
+ font-weight: 300;
97
+ }
98
+ h6 {
99
+ margin-top: 10px;
100
+ margin-bottom: 10px;
101
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
102
+ font-size: 18px;
103
+ line-height: 1.2;
104
+ font-weight: 300;
105
+ letter-spacing: 3px;
106
+ text-transform: uppercase;
107
+ }
108
+ p {
109
+ margin-top: 0;
110
+ margin-bottom: 10px;
111
+ }
112
+
113
+ code {
114
+ font-family: 'Source Code Pro', monospace;
115
+ font-weight:400;
116
+ font-size: inherit;
117
+ }
118
+
119
+ p > code,
120
+ li > code {
121
+ background: rgba(81, 42, 79, 0.05);
122
+ word-wrap: break-word;
123
+ box-decoration-break: clone;
124
+ padding: .2rem .4rem .3rem;
125
+ border-radius: 2px;
126
+ }
127
+
128
+ pre code {
129
+ font-size:20px;
130
+ display:block;
131
+ background: rgba(81, 42, 79, 0.05);
132
+ border: 1px solid rgba(81, 42, 79, 0.15);
133
+ white-space: pre;
134
+ -webkit-overflow-scrolling: touch;
135
+ max-width: 100%;
136
+ min-width: 100px;
137
+ padding: 20px;
138
+ text-align:left;
139
+ }
140
+
141
+ .nav-menu-icon:before {
142
+ content: "\e602";
143
+ }
144
+ .form {
145
+ margin: 0 0 15px;
146
+ width:100%;
147
+ }
148
+ .input {
149
+ display: block;
150
+ width: 100%;
151
+ height: 38px;
152
+ padding: 8px 12px;
153
+ margin-bottom: 10px;
154
+ font-size: 14px;
155
+ line-height: 1.428571429;
156
+ color: #333333;
157
+ vertical-align: middle;
158
+ background-color: #ffffff;
159
+ border: 1px solid #cccccc;
160
+ }
161
+ .input:-moz-placeholder {
162
+ color: #999;
163
+ }
164
+ .input::-moz-placeholder {
165
+ color: #999;
166
+ opacity: 1;
167
+ }
168
+ .input:-ms-input-placeholder {
169
+ color: #999;
170
+ }
171
+ .input::-webkit-input-placeholder {
172
+ color: #999;
173
+ }
174
+ .input:focus {
175
+ border-color: #3898EC;
176
+ outline: 0;
177
+ }
178
+ .input-text {
179
+ height: 48px;
180
+ font-size: 18px;
181
+ }
182
+ .container {
183
+ margin-left: auto;
184
+ margin-right: auto;
185
+ max-width: 940px;
186
+ display: -webkit-box;
187
+ display: -webkit-flex;
188
+ display: -ms-flexbox;
189
+ display: flex;
190
+ -webkit-box-orient: vertical;
191
+ -webkit-box-direction: normal;
192
+ -webkit-flex-direction: column;
193
+ -ms-flex-direction: column;
194
+ flex-direction: column;
195
+ -webkit-box-pack: center;
196
+ -webkit-justify-content: center;
197
+ -ms-flex-pack: center;
198
+ justify-content: center;
199
+ -webkit-box-align: center;
200
+ -webkit-align-items: center;
201
+ -ms-flex-align: center;
202
+ align-items: stretch;
203
+ }
204
+
205
+ /* left-aligns things narrower than containers inside containers */
206
+ .container h1, .container h2, .container h3, .container h4, .container h5, .container h6, .container p, .container div {
207
+ margin-right:auto;
208
+ }
209
+ .container:before,
210
+ .container:after {
211
+ content: " ";
212
+ display: table;
213
+ grid-column-start: 1;
214
+ grid-row-start: 1;
215
+ grid-column-end: 2;
216
+ grid-row-end: 2;
217
+ }
218
+ .container:after {
219
+ clear: both;
220
+ }
221
+ .container {
222
+ display: -webkit-box;
223
+ display: -webkit-flex;
224
+ display: -ms-flexbox;
225
+ display: flex;
226
+ -webkit-box-orient: vertical;
227
+ -webkit-box-direction: normal;
228
+ -webkit-flex-direction: column;
229
+ -ms-flex-direction: column;
230
+ flex-direction: column;
231
+ -webkit-box-pack: center;
232
+ -webkit-justify-content: center;
233
+ -ms-flex-pack: center;
234
+ justify-content: center;
235
+ -webkit-box-align: center;
236
+ -webkit-align-items: center;
237
+ -ms-flex-align: center;
238
+ align-items: center;
239
+
240
+ }
241
+ .nav {
242
+ position: relative;
243
+ background: #dddddd;
244
+ z-index: 1000;
245
+ }
246
+ .nav:before,
247
+ .nav:after {
248
+ content: " ";
249
+ display: table;
250
+ grid-column-start: 1;
251
+ grid-row-start: 1;
252
+ grid-column-end: 2;
253
+ grid-row-end: 2;
254
+ }
255
+ .nav:after {
256
+ clear: both;
257
+ }
258
+ .nav-brand {
259
+ position: relative;
260
+ float: left;
261
+ text-decoration: none;
262
+ color: #333333;
263
+ }
264
+ .nav-link {
265
+ position: relative;
266
+ display: inline-block;
267
+ vertical-align: top;
268
+ text-decoration: none;
269
+ color: #222222;
270
+ padding: 20px;
271
+ text-align: left;
272
+ margin-left: auto;
273
+ margin-right: auto;
274
+ }
275
+ .nav-link.current {
276
+ color: #0082f3;
277
+ }
278
+ .nav-menu {
279
+ position: relative;
280
+ float: right;
281
+ }
282
+ .nav-button {
283
+ position: relative;
284
+ float: right;
285
+ padding: 18px;
286
+ font-size: 24px;
287
+ display: none;
288
+ cursor: pointer;
289
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
290
+ tap-highlight-color: rgba(0, 0, 0, 0);
291
+ -webkit-user-select: none;
292
+ -moz-user-select: none;
293
+ -ms-user-select: none;
294
+ user-select: none;
295
+ }
296
+ .nav-button:focus {
297
+ outline: 0;
298
+ }
299
+
300
+ /* custom styles */
301
+
302
+ p {
303
+ margin-bottom: 15px;
304
+ }
305
+
306
+ p {
307
+ max-width: 43ch;
308
+ }
309
+
310
+ a {
311
+ color: #d5a23c;
312
+ text-decoration-thickness:6% ;
313
+ text-underline-offset: 5%;
314
+ }
315
+
316
+ a:hover {
317
+ filter: brightness(.85);
318
+ }
319
+
320
+ strong {
321
+ font-weight: 600;
322
+ }
323
+
324
+ .layout-grid {
325
+ display: -ms-grid;
326
+ display: grid;
327
+ width:100%;
328
+ grid-auto-columns: 1fr;
329
+ -ms-grid-rows: auto auto;
330
+ grid-template-rows: auto auto;
331
+ grid-column-gap: 30px;
332
+ grid-row-gap: 30px;
333
+ }
334
+
335
+ .grid-2 {
336
+ -ms-grid-columns: 1fr 1fr;
337
+ grid-template-columns: 1fr 1fr;
338
+ align-items:start;
339
+ }
340
+
341
+ .grid-3 {
342
+ -ms-grid-columns: 1fr 1fr 1fr;
343
+ grid-template-columns: 1fr 1fr 1fr;
344
+ }
345
+
346
+ .grid-span-2 {
347
+ -ms-grid-column: span 2;
348
+ grid-column-start: span 2;
349
+ -ms-grid-column-span: 2;
350
+ grid-column-end: span 2;
351
+ }
352
+
353
+ .grid-span-3 {
354
+ -ms-grid-column: span 3;
355
+ grid-column-start: span 3;
356
+ -ms-grid-column-span: 3;
357
+ grid-column-end: span 3;
358
+ }
359
+
360
+
361
+
362
+ .nav-container {
363
+ display: -webkit-box;
364
+ display: -webkit-flex;
365
+ display: -ms-flexbox;
366
+ display: flex;
367
+ padding-top: 10px;
368
+ padding-bottom: 10px;
369
+ -webkit-box-orient: horizontal;
370
+ -webkit-box-direction: normal;
371
+ -webkit-flex-direction: row;
372
+ -ms-flex-direction: row;
373
+ flex-direction: row;
374
+ -webkit-box-pack: justify;
375
+ -webkit-justify-content: space-between;
376
+ -ms-flex-pack: justify;
377
+ justify-content: space-between;
378
+ -webkit-box-align: center;
379
+ -webkit-align-items: center;
380
+ -ms-flex-align: center;
381
+ align-items: center;
382
+ }
383
+
384
+ .brand {
385
+ -webkit-box-ordinal-group: 0;
386
+ -webkit-order: -1;
387
+ -ms-flex-order: -1;
388
+ order: -1;
389
+ }
390
+
391
+ .nav-menu {
392
+ display: -webkit-box;
393
+ display: -webkit-flex;
394
+ display: -ms-flexbox;
395
+ display: flex;
396
+ -webkit-box-align: center;
397
+ -webkit-align-items: center;
398
+ -ms-flex-align: center;
399
+ align-items: center;
400
+ -webkit-box-ordinal-group: 2;
401
+ -webkit-order: 1;
402
+ -ms-flex-order: 1;
403
+ order: 1;
404
+ }
405
+
406
+ .navbar {
407
+ display: -webkit-box;
408
+ display: -webkit-flex;
409
+ display: -ms-flexbox;
410
+ display: flex;
411
+ padding: 30px;
412
+ -webkit-box-pack: justify;
413
+ -webkit-justify-content: space-between;
414
+ -ms-flex-pack: justify;
415
+ justify-content: space-between;
416
+ background-color: #fffbfa;
417
+ }
418
+
419
+ .nav-link {
420
+ margin-right: 10px;
421
+ margin-left: 10px;
422
+ padding: 10px;
423
+ font-size: 18px;
424
+ font-weight: 500;
425
+ }
426
+
427
+ .nav-link.current {
428
+ border-style: solid;
429
+ border-width: 2px;
430
+ border-color: rgba(81, 42, 79, 0.15);
431
+ color: #512a4f;
432
+ }
433
+
434
+ .button:hover {
435
+ filter:brightness(.95);
436
+ }
437
+
438
+ .button.button-footer {
439
+ width: auto;
440
+ margin-right: 10px;
441
+ margin-left: 10px;
442
+ font-size: 18px;
443
+ }
444
+
445
+ .footer {
446
+ position: relative;
447
+ margin-top: 20vh;
448
+ padding: 30px 10px;
449
+ background-color: #512a4f;
450
+ color: #fffbfa;
451
+ font-size: 18px;
452
+ text-align: center;
453
+ }
454
+ .footer * {
455
+ margin-left:auto;
456
+ margin-right:auto;
457
+ }
458
+ .footer-actions {
459
+ margin-bottom: 10px;
460
+ }
461
+
462
+ .footer-p {
463
+ margin-bottom: 5px;
464
+ }
465
+
466
+ .footer-logo {
467
+ width: 150px;
468
+ -webkit-filter: invert(100%);
469
+ filter: invert(100%);
470
+ padding:0 0 0 30px;
471
+ }
472
+
473
+ .shout {
474
+ max-width: 30ch;
475
+ font-size: 50px;
476
+ line-height: 1.2;
477
+ font-weight: 500;
478
+ margin-top:0;
479
+ }
480
+
481
+ .shout-box {
482
+ padding-top:5vh;
483
+ -webkit-box-align: center;
484
+ -webkit-align-items: center;
485
+ -ms-flex-align: center;
486
+ align-items: center;
487
+ }
488
+
489
+ .small p, p.small {
490
+ font-size:20px;
491
+ }
492
+
493
+ .tile-icon {
494
+ max-width:120px;
495
+ }
496
+
497
+ .top-45 {
498
+ margin-top: 45px;
499
+ }
500
+
501
+ .top-0 {
502
+ margin-top: 0;
503
+ }
504
+
505
+ .bottom-0 {
506
+ margin-bottom: 0;
507
+ }
508
+
509
+ .airtable-box {
510
+ margin: 40px;
511
+ }
512
+
513
+ .boxed {
514
+ padding:15px;
515
+ margin: 15px 0;
516
+ border: 2px solid rgba(81, 42, 79, 0.15);
517
+ }
518
+
519
+ .quote {
520
+ font-weight: 500;
521
+ }
522
+
523
+ .citation {
524
+ font-style: italic;
525
+ margin-bottom:0;
526
+ }
527
+
528
+ @media screen and (max-width: 991px) {
529
+ .container {
530
+ max-width: 728px;
531
+ }
532
+ .nav[data-collapse="medium"] .nav-menu {
533
+ display: none;
534
+ }
535
+ .nav[data-collapse="medium"] .nav-button {
536
+ display: block;
537
+ }
538
+ body {
539
+ padding-right: 10px;
540
+ padding-left: 10px;
541
+ }
542
+
543
+ .nav-container {
544
+ -webkit-align-self: auto;
545
+ -ms-flex-item-align: auto;
546
+ -ms-grid-row-align: auto;
547
+ align-self: auto;
548
+ }
549
+
550
+ .nav-menu {
551
+ padding: 20px;
552
+ background-color: #bfc0c0;
553
+ }
554
+
555
+ .navbar {
556
+ margin-right: -20px;
557
+ margin-left: -20px;
558
+ padding: 20px;
559
+ -webkit-box-align: center;
560
+ -webkit-align-items: center;
561
+ -ms-flex-align: center;
562
+ align-items: center;
563
+ }
564
+
565
+ .nav-link {
566
+ width: 100%;
567
+ margin-right: 0px;
568
+ margin-bottom: 10px;
569
+ margin-left: 0px;
570
+ }
571
+
572
+ .nav-link.current {
573
+ border-color: #fffbfa;
574
+ }
575
+
576
+ .shout {
577
+ font-size: 48px;
578
+ margin-top:0;
579
+ }
580
+
581
+ .footer {
582
+ margin-right: -10px;
583
+ margin-left: -10px;
584
+ padding-right: 20px;
585
+ padding-left: 20px;
586
+ }
587
+
588
+ .shout-box {
589
+ -webkit-box-orient: vertical;
590
+ -webkit-box-direction: normal;
591
+ -webkit-flex-direction: column;
592
+ -ms-flex-direction: column;
593
+ flex-direction: column;
594
+ }
595
+
596
+ .nav-container-last {
597
+ -webkit-box-ordinal-group: 2;
598
+ -webkit-order: 1;
599
+ -ms-flex-order: 1;
600
+ order: 1;
601
+ }
602
+ }
603
+
604
+ @media screen and (max-width: 767px) {
605
+ .nav-brand {
606
+ padding-left: 10px;
607
+ }
608
+
609
+ body {
610
+ padding-right: 10px;
611
+ padding-left: 10px;
612
+ font-size: 20px;
613
+ }
614
+
615
+ .navbar {
616
+ margin-right: -10px;
617
+ margin-left: -10px;
618
+ padding: 10px 0px;
619
+ }
620
+
621
+ .button {
622
+ width: 100%;
623
+ font-size: 18px;
624
+ }
625
+
626
+ .grid-3 {
627
+ grid-column-gap: 15px;
628
+ grid-row-gap: 15px;
629
+ grid-auto-columns: 1fr;
630
+ -ms-grid-columns: 1fr;
631
+ }
632
+
633
+ .grid-span-3 {
634
+ -ms-grid-column: span 1;
635
+ grid-column-start: span 1;
636
+ -ms-grid-column-span: 1;
637
+ grid-column-end: span 1;
638
+ }
639
+
640
+ .airtable-box {
641
+ margin: 10px;
642
+ }
643
+
644
+ }
645
+
646
+
647
+ @media screen and (max-width: 479px) {
648
+ .container {
649
+ max-width: none;
650
+ }
651
+
652
+ .shout {
653
+ font-size: 36px;
654
+ }
655
+
656
+ .shout-box {
657
+ padding-top:10px;
658
+ }
659
+
660
+ h2 {
661
+ font-size: 24px;
662
+ }
663
+
664
+ h3 {
665
+ font-size: 16px;
666
+ }
667
+
668
+ .button.button-footer {
669
+ width: 100%;
670
+ margin-right: 1px;
671
+ margin-left: 1px;
672
+ }
673
+
674
+ .footer {
675
+ padding-top: 10px;
676
+ padding-right: 10px;
677
+ padding-left: 10px;
678
+ }
679
+
680
+ .logo {
681
+ max-width: 80%;
682
+ }
683
+
684
+ .grid, .grid-2 {
685
+ grid-column-gap: 15px;
686
+ grid-row-gap: 15px;
687
+ grid-auto-columns: 1fr;
688
+ grid-template-columns: 1fr;
689
+ -ms-grid-columns: 1fr;
690
+ }
691
+
692
+ .grid-span-2 {
693
+ -ms-grid-column: span 1;
694
+ grid-column-start: span 1;
695
+ -ms-grid-column-span: 1;
696
+ grid-column-end: span 1;
697
+ }
698
+
699
+ }
700
+
701
+ /* Dark mode */
702
+
703
+ @media (prefers-color-scheme: dark) {
704
+ body {
705
+ background-color: #000;
706
+ color: #fffbfa;
707
+ }
708
+ h3, h4 {
709
+ color:#bfc0c0;
710
+ }
711
+
712
+ .footer, .navbar {
713
+ background-color: #333;
714
+ color: #fffbfa;
715
+ }
716
+ .logo {
717
+ filter: invert(1);
718
+ }
719
+ .nav-link{
720
+ color:#fffbfa;
721
+ }
722
+ .nav-link.current {
723
+ color: #bfc0c0;
724
+ border-color:#bfc0c0;
725
+ }
726
+ }