-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign_system.html
More file actions
1308 lines (1257 loc) · 58 KB
/
design_system.html
File metadata and controls
1308 lines (1257 loc) · 58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="MapStuff - Example Personal Blog">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog | MapStuff</title>
<link rel="icon" href="icon.ico">
<link rel="shortcut icon" href="icon.ico">
<meta property="og:title" content="Mapstuff">
<meta property="og:type" content="article">
<meta property="og:url" content="https://alexaac.github.io/mapstuff/">
<meta property="og:description" content="Mapstuff example blog">
<meta property="article:publisher" content="https://alexaac.github.io">
<meta property="article:section" content="Article Tag">
<meta property="article:tag" content="Article Tag">
<meta property="og:image" content="https://alexaac.github.io/mapstuff/img/og_image_1200_630.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="https://alexaac.github.io/mapstuff/img/og_image_1200_630.png">
<meta property="twitter:site" content="@maptheclouds">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/ft-syntax-highlight.min.css">
</head>
<body>
<div class="mps-wrap-flex">
<header class="header">
<div class="nav-flex">
<div class="nav-brand">
<a class="nav-brand-link" href="https://alexaac.github.io/mapstuff">
<img
src="img/logo_text_black.svg"
alt="MapStuff brand logo"
class="nav-brand"
/></a>
</div>
<div class="nav-mobile-button">
<span></span> <span></span> <span></span> <span></span>
</div>
<nav role="navigation" class="nav-menu-flex">
<div class="nav-menu-wrap">
<div role="list" class="nav-menu-list-flex">
<div role="listitem" class="nav-menu-item">
<a href="#" class="nav-link mps-link">Latest</a>
</div>
<div role="listitem" class="nav-menu-item">
<a href="#" class="nav-link mps-link">Maps</a>
</div>
<div role="listitem" class="nav-menu-item">
<a href="#" class="nav-link mps-link">Dataviz</a>
</div>
<div role="listitem" class="nav-menu-item">
<a href="#" class="nav-link mps-link">Learning</a>
</div>
<div role="listitem" class="nav-menu-item">
<a href="design_system.html" class="nav-link mps-link">Design</a>
</div>
</div>
</div>
</nav>
<div class="nav-menu-wrap nav-right">
<div role="list" class="nav-menu-list-flex">
<div role="listitem" class="nav-menu-item">
<a href="#" class="nav-link mps-link">Login</a>
</div>
<div role="listitem" class="nav-menu-item mps-subscribe">
<a href="#" class="mps-btn mps-btn-primary">Subscribe</a>
</div>
</div>
</div>
</div>
</header>
<main class="main">
<a href="#top" aria-label="Top of the page">
<button id="top-btn"> ˄ </button>
</a>
<div class="navbar" role="navigation" aria-label="Menu">
<span class="title">Design System</span>
<ul class="nav-list">
<li><a href="#Blog_Homepage">Blog Homepage Link</a></li>
<li><a href="#Blog_Post">Blog Post Link</a></li>
<li><a href="#Logo">Logo</a></li>
<li><a href="#Colors">Colors</a></li>
<li><a href="#Typography">Typography</a></li>
<li><a href="#Buttons">Buttons</a></li>
<li><a href="#Author">Author Info</a></li>
<li><a href="#Social">Social Sharing</a></li>
<li><a href="#Cards">Cards</a></li>
<li><a href="#Article">Article</a></li>
<li><a href="#Page_Breaks">Page Breaks</a></li>
<li><a href="#Flex">Flex</a></li>
<li><a href="#Grid">Grid</a></li>
</ul>
</div>
<div class="mps-doc">
<h1>Map Stuff Design System</h1>
<section id="Blog_Homepage" class="mps-section">
<h2>Blog Homepage Link</h2>
<article>
<p>
<a href="https://alexaac.github.io/mapstuff" aria-label="See blog homepage">Blog Homepage Link</a>
</p>
</article>
</section>
<section id="Blog_Post" class="mps-section">
<h2>Blog Post Link</h2>
<article>
<p>
<a href="post.html" aria-label="See blog post">Blog Post Link</a>
</p>
</article>
</section>
<section id="Logo" class="mps-section">
<h2>Logo</h2>
<article>
<p>
The logo helps our users identify our brand when using our services.</p>
<p>
Example
</p>
<div class="color-neutral-500-bk back">
<img src="img/logo_text_white.svg" alt="MapStuff logo white on black, with text." height="150px">
</div>
<div class="color-neutral-200-bk back">
<img src="img/logo_text_black.svg" alt="MapStuff logo black on white, with text." height="150px">
</div>
<div class="color-neutral-500-bk back">
<img src="img/logo_text_white.svg" alt="MapStuff logo white on black, with text." height="100px">
</div>
<div class="color-neutral-200-bk back">
<img src="img/logo_text_black.svg" alt="MapStuff logo black on white, with text." height="100px">
</div>
<div class="color-neutral-500-bk back">
<img src="img/logo_text_white.svg" alt="MapStuff logo white on black, with text.">
</div>
<div class="color-neutral-200-bk back">
<img src="img/logo_text_black.svg" alt="MapStuff logo black on white, with text.">
</div>
</article>
</section>
<section id="Colors" class="mps-section">
<h2>Colors</h2>
<article>
<p>
The colors set out below will form the base colors for all components, with a secondary palette introduced to complement primary colors where an alternate colour is required. Colors are presented here by their name and Hex value.
</p>
<p>See <a href="https://paletton.com" aria-label="See Paletton color app">Paletton</a>, <a href="http://tristen.ca/hcl-picker/#/hlc/6/1/15534C/E2E062" aria-label="See Colorpicker page">Colorpicker for data</a> and <a href="https://earthobservatory.nasa.gov/blogs/elegantfigures/2013/08/05/subtleties-of-color-part-1-of-6/" aria-label="See Elegant Figures page">Elegant Figures</a> article for more info on how to choose a color palette.</p>
<h3>Primary colors</h3>
<div class="items-group-rows">
<div class="items-item">
<figure class="items-img color-primary-bk">
<figcaption class="color-neutral-100">#da1f92</figcaption>
</figure>
<p>color-primary</p>
</div>
<div class="items-item">
<figure class="items-img color-accent-bk">
<figcaption class="color-neutral-100">#057f9c</figcaption>
</figure>
<p>color-accent</p>
</div>
<div class="items-item">
<figure class="items-img color-neutral-100-bk">
<figcaption>#f0f0f0</figcaption>
</figure>
<p>color-neutral-200</p>
</div>
<div class="items-item">
<figure class="items-img color-neutral-500-bk">
<figcaption class="color-neutral-200">#162945</figcaption>
</figure>
<p>color-neutral-500</p>
</div>
</div>
<h3>Secondary colors</h3>
<div class="items-group-rows">
<div class="items-item">
<figure class="items-img color-neutral-400-bk">
<figcaption class="color-neutral-100">#4d4e53</figcaption>
</figure>
<p>Text - color-neutral-400</p>
</div>
<div class="items-item">
<figure class="items-img color-secondary-bk">
<figcaption class="color-neutral-100">#006fc2</figcaption>
</figure>
<p>Hyperlink - color-secondary</p>
</div>
<div class="items-item">
<figure class="items-img color-neutral-100-bk">
<figcaption>#fff</figcaption>
</figure>
<p>color-neutral-100</p>
</div>
<div class="items-item">
<figure class="items-img color-neutral-600-bk">
<figcaption class="color-neutral-100">#000</figcaption>
</figure>
<p>color-neutral-600</p>
</div>
</div>
<h3>Tertiary colors</h3>
<div class="items-group-rows">
<div class="items-item">
<figure class="items-img color-success-bk">
<figcaption class="color-neutral-100">#4a8122</figcaption>
</figure>
<p>color-success</p>
</div>
<div class="items-item">
<figure class="items-img color-warning-bk">
<figcaption class="color-neutral-100">#bd8b03</figcaption>
</figure>
<p>color-warning</p>
</div>
<div class="items-item">
<figure class="items-img color-error-bk">
<figcaption class="color-neutral-100">#d3394b</figcaption>
</figure>
<p>color-error</p>
</div>
</div>
</article>
</section>
<section id="Typography" class="mps-section">
<h2>Typography</h2>
<article>
<p>
Typography is the structure of every well designed interface. It is used to guide users through the interface and help them understand the logic behind the interface intuitively.
</p>
<p>
MapStuff uses Sacramento for headers and Barlow Semi Condensed for text.
</p>
<p>
</p>
<a href="https://fonts.google.com/specimen/Sacramento" aria-label="Sacramento link on Google fonts page"><span>Sacramento font on Google fonts</span></a>
<p>
<a href="https://fonts.google.com/specimen/Barlow+Semi+Condensed" aria-label="Barlow link on Google fonts page"><span>Barlow font on Google fonts</span></a>
</p>
<h3>Type scale</h3>
<p>
The type scale goes from 6.76(px)(0.422rem) to 67.34(px)(4.209rem). Base size 16px, scale Perfect Fourth.
</p>
<p>
For <code class="mps-code">@media screen and (max-width: 770px)</code>the type scale goes from 11.24(px)(0.702rem) to 28.83(px)(1.802rem). Base size 16px, scale Major Second.
</p>
<p>
<a href="https://type-scale.com/" aria-label="Type Scale page">Type Scale.</a>
</p>
<h1>h1 heading - 67.34(px)(4.209rem)</h1>
<h2>h2 heading - 50.52(px)(3.157rem)</h2>
<h3>h3 heading - 37.90(px)(2.369rem)</h3>
<h4>h4 heading - 28.43(px)(1.777rem)</h4>
<h5>h5 heading - 21.33(px)(1.333rem</h5>
<p>Paragraph - 16.00(px)(1rem)</p>
<p>
<span class="helper-text">Helper Text - 12.00(px)(0.75rem)</span>
</p>
<p>
<span class="copyright-text">Copyright Text - 9.00(px)(0.563rem)</span>
</p>
<p>
<span class="extra-small-text">Extra Small Text - 6.76(px)(0.422rem)</span>
</p>
<h3>Paragraph</h3>
<p>
Use <a href="https://addons.mozilla.org/en-US/firefox/addon/tota11y-accessibility-toolkit/" aria-label="tota11y accessibility kit extension page">tota11y</a> to check elements contrast and accesibility.
</p>
<p>
Styling inline text elements:
</p>
<p>You can use the mark tag to <mark>highlight</mark> text.</p>
<p><del>This line of text is meant to be treated as deleted text.</del></p>
<p><s>This line of text is meant to be treated as no longer accurate.</s></p>
<p><ins>This line of text is meant to be treated as an addition to the document.</ins></p>
<p><u>This line of text will render as underlined</u></p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p><strong>This line rendered as bold text.</strong></p>
<p><em>This line rendered as italicized text.</em></p>
<p class="color-primary">Red text</p>
<p class="color-accent">Accent text</p>
<p class="color-neutral-500">Black text</p>
<p class="color-secondary">Blue text</p>
<p class="color-success">Success text</p>
<p class="color-warning">Warning text</p>
<p class="color-error">Error text</p>
<div class="color-neutral-600-bk">
<p class="color-primary">Red text</p>
<p class="color-accent">Accent text</p>
<p class="color-secondary-light">Light blue text</p>
<p class="color-success">Success text</p>
<p class="color-warning">Warning text</p>
<p class="color-error">Error text</p>
</div>
<p class="color-neutral-100 color-primary-bk">White text on red background</p>
<p class="color-neutral-100 color-accent-bk">White text on accent background</p>
<p class="color-neutral-100 color-success-bk">White text on success background</p>
<p class="color-neutral-100 color-warning-bk">White text on warning background</p>
<p class="color-neutral-100 color-error-bk">White text on error background</p>
<h3>Code</h3>
<p>
Include <code class="mps-code">rel="noreferrer noopener"</code> along with <code class="mps-code">target="_blank"</code>.
</p>
<h3>Links</h3>
<p>
Links are key elements for the navigation. Thanks to underscoring, they can easily be spotted by users.
</p>
<p>
Avoid opening links in a new tab or window. If you must use this behaviour, include the words ‘opens in new tab’ as part of the link.
</p>
<p>
If it’s an external link to a non-government website, make that clear in the link text.
</p>
<p>
<a href="#" aria-label="example blank link">A text link</a><br><br>
</p>
<h3>Blockquotes</h3>
<p>
<figure class="mps-article">
<blockquote cite="https://en.wikipedia.org/wiki/UV_mapping">
<p>
UV mapping is the 3D modeling process of projecting a 2D image to a 3D model's surface for texture mapping. The letters "U" and "V" denote the axis of the 2D texture because "X", "Y", and "Z" are already used to denote the axis of the 3D object in model space, while "W" (in addition to XYZ) is used in calculating quaternion rotations, a common operation in computer graphics.
</p>
</blockquote>
<figcaption>—Wikipedia, <cite>UV mapping</cite>
</figure>
</p>
</article>
</section>
<section id="Buttons" class="mps-section">
<h2>Buttons</h2>
<article>
<p>
Buttons are action elements, they allow users to interact with the product. They can be of different sizes, colors and status.
</p>
<h3>Main buttons</h3>
<p>
The primary button is plain with a background. For the secondary button, the design system provides a second type of button called outline.
</p>
<div class="items-group-rows">
<div class="items-item">
<button type="button" class="mps-btn mps-btn-primary">#be3188</button>
<p>Primary button</p>
</div>
<div class="items-item">
<button type="button" class="mps-btn mps-btn-secondary">#be3188</button>
<p>Secondary button</p>
</div>
</div>
<h3>Tertiary buttons</h3>
<p>
Predefined button styles, each serving its own semantic purpose according to the theme colors palette.
</p>
<div class="items-group-rows">
<div class="items-item">
<button type="button" class="mps-btn mps-btn-success">#4a8122</button>
<p>Success</p>
</div>
<div class="items-item">
<button type="button" class="mps-btn mps-btn-warning">#bd8b03</button>
<p>Warning</p>
</div>
<div class="items-item">
<button type="button" class="mps-btn mps-btn-error">#c03344</button>
<p>Error</p>
</div>
</div>
<div class="items-group-rows">
<div class="items-item">
<button type="button" class="mps-btn mps-btn-success-sec">#4a8122</button>
<p>Success secondary</p>
</div>
<div class="items-item">
<button type="button" class="mps-btn mps-btn-warning-sec">#bd8b03</button>
<p>Warning secondary</p>
</div>
<div class="items-item">
<button type="button" class="mps-btn mps-btn-error-sec">#c03344</button>
<p>Error secondary</p>
</div>
</div>
<div class="items-group-rows">
<div class="items-item">
<button type="button" class="mps-btn mps-btn-primary disabled">#d7d7d7</button>
<p>Disabled</p>
</div>
</div>
<h3>Button Size</h3>
<p>
Larger or smaller buttons.
</p>
<div class="items-group-rows">
<div class="items-item">
<button type="button" class="mps-btn mps-btn-primary mps-btn-sm">#be3188</button>
</div>
<div class="items-item">
<button type="button" class="mps-btn mps-btn-primary">#be3188</button>
</div>
<div class="items-item">
<button type="button" class="mps-btn mps-btn-primary mps-btn-lg">#be3188</button>
</div>
</div>
</article>
</section>
<section id="Author" class="mps-section">
<h2>Author Info</h2>
<article>
<p>
Author Info
</p>
<p>
<div class="mps-author-info-flex">
<img class="mps-author-image" src="https://mps-ph.s3.us-east-2.amazonaws.com/author.png" alt="Alexa Cristina">
<p>
<a href="#" aria-label="author page blank link">Alexa Cristina</a>
• <time datetime="2021-06-07T09:00:00+00:00" itemprop="datePublished">June 7, 2021</time> • 4 min read
</p>
</div>
<div class="mps-container bd sm">
<div class="mps-author-info-flex">
<img class="mps-author-image post" src="https://mps-ph.s3.us-east-2.amazonaws.com/author.png" alt="Alexa Cristina">
<p>
<div class="article-footer-author-info">
<a href="#" aria-label="author page blank link">
<span class="title">Alexa Cristina</span>
</a>
<p>Data Wizard at AlexaC</p>
<div class="article-social-icon">
<a
href="https://twitter.com/maptheclouds"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="twitter page ex 2"
>
<img src="img/twitter.svg" alt="Twitter" />
</a>
</div>
</div>
</p>
</div>
</div>
</p>
</article>
</section>
<section id="Social" class="mps-section">
<h2>Social Sharing</h2>
<article>
<p>
Social Sharing
</p>
<div class="mps-container bd sm">
<div class="mps-social-grid">
<a
href="https://www.github.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="github link"
>
<img src="img/github.svg" alt="GitHub" />
</a>
<a
href="https://www.facebook.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="facebook page ex 3"
>
<img src="img/facebook.svg" alt="Facebook" />
</a>
<a
href="https://twitter.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="twitter page ex 3"
>
<img src="img/twitter.svg" alt="Twitter" />
</a>
<a
href="https://www.linkedin.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="linkedin page ex 3"
>
<img src="img/linkedin.svg" alt="Linkedin" />
</a>
</div>
</div>
<div class="mps-container bd md">
<div class="mps-social-grid">
<a
href="https://www.github.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
>
<img src="img/github.svg" alt="GitHub" />
</a>
<a
href="https://www.facebook.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="facebook page ex 4"
>
<img src="img/facebook.svg" alt="Facebook" />
</a>
<a
href="https://twitter.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="twitter page ex 4"
>
<img src="img/twitter.svg" alt="Twitter" />
</a>
<a
href="https://www.linkedin.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="linkedin page ex 4"
>
<img src="img/linkedin.svg" alt="Linkedin" />
</a>
</div>
</div>
<div class="mps-container bd lg">
<div class="mps-social-grid">
<a
href="https://www.github.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
>
<img src="img/github.svg" alt="GitHub" />
</a>
<a
href="https://www.facebook.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="facebook page ex 5"
>
<img src="img/facebook.svg" alt="Facebook" />
</a>
<a
href="https://twitter.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="twitter page ex 5"
>
<img src="img/twitter.svg" alt="Twitter" />
</a>
<a
href="https://www.linkedin.com/mapstuff"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="linkedin page ex 5"
>
<img src="img/linkedin.svg" alt="Linkedin" />
</a>
</div>
</div>
<div class="mps-container bd sm">
<div class="article-footer-container container">
<p class="color-primary">Don't forget to share this post!</p>
<div class="mps-social-grid-wrap">
<div class="mps-social-grid post">
<a
href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Falexaac.github.io%2Fmapstuff%2Fpost.html"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="facebook page ex 6"
>
<img src="img/facebook.svg" alt="Facebook" />
</a>
<a
href="https://twitter.com/intent/tweet?source=https%3A%2F%2Falexaac.github.io%2Fmapstuff%2Fpost.html&text=Procedural GL JS:%20https%3A%2F%2Falexaac.github.io%2Fmapstuff%2Fpost.html"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="twitter page ex 6"
>
<img src="img/twitter.svg" alt="Twitter" />
</a>
<a
href="https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Falexaac.github.io%2Fmapstuff%2Fpost.html"
target="_blank"
rel="noreferrer noopener"
class="mps-social"
aria-label="linkedin page ex 6"
>
<img src="img/linkedin.svg" alt="Linkedin" />
</a>
</div>
</div>
</div>
</div>
</article>
</section>
<section id="Cards" class="mps-section">
<h2>Cards</h2>
<article>
<p>
Cards
</p>
<div class="items-group-columns">
<div class="items-item">
<!-- Top Post Medium Left -->
<p>
<div class="mps-container bd lg">
<div class="mps-post-grid inversed">
<a href="post1.html" aria-label="blog post link 1" class="img-link mps-inline-block">
<div class="post-img-wrap pointer-events-none">
<img src="img/post_img.png" alt="Cheile Aiudului 3D Map WebGL" srcset="img/post_img_576.png 576w, img/post_img_992.png 992w, img/post_img.png 1200w" class="post-img">
</div>
</a>
<div class="mps-post-info-flex">
<span class="mps-post-category">Maps</span>
<a href="post2.html" aria-label="blog post link 2" class="mps-post-link">
<h3>My Blog Post Title</h3>
<p>
Interesting stuff about maps, news, tutorials, other zillion details.
</p>
</a>
<div class="mps-author-info-flex">
<img class="mps-author-image" src="https://mps-ph.s3.us-east-2.amazonaws.com/author.png" alt="Alexa Cristina">
<p>
<a href="#" aria-label="author page blank link">Alexa Cristina</a>
• <time datetime="2021-06-07T09:00:00+00:00" itemprop="datePublished">June 7, 2021</time> • 4 min read
</p>
</div>
</div>
</div>
</div>
</p>
</div>
<div class="items-item">
<!-- Top Post Medium Right -->
<p>
<div class="mps-container bd lg">
<div class="mps-post-grid">
<div class="mps-post-info-flex">
<span class="mps-post-category">Maps</span>
<a href="post3.html" aria-label="blog post link 3" class="mps-post-link">
<h2>Procedural GL JS</h2>
<p>
3D map experiences on the web, written in JavaScript and WebGL.
</p>
</a>
<div class="mps-author-info-flex">
<img class="mps-author-image" src="https://mps-ph.s3.us-east-2.amazonaws.com/author.png" alt="Alexa Cristina">
<p>
<a href="#" aria-label="author page blank link">Alexa Cristina</a>
• <time datetime="2021-06-07T09:00:00+00:00" itemprop="datePublished">June 7, 2021</time> • 4 min read
</p>
</div>
</div>
<a href="post4.html" aria-label="Cheile Aioudului image link" class="img-link mps-inline-block">
<div class="post-img-wrap pointer-events-none">
<img src="img/post_img.png" alt="Cheile Aiudului 3D Map WebGL" srcset="img/post_img_576.png 576w, img/post_img_992.png 992w, img/post_img.png 1200w" class="post-img">
</div>
</a>
</div>
</div>
</p>
</div>
<div class="items-item">
<!-- Top Posts Smaller -->
<p>
<div class="mps-container bd md">
<a href="post5.html" aria-label="blog post link 5" class="img-link mps-inline-block">
<div class="post-img-wrap pointer-events-none">
<div class="post-img-wrap-in">
<img src="img/post_img.png" alt="Cheile Aiudului 3D Map WebGL" srcset="img/post_img_576.png 576w, img/post_img_992.png 992w, img/post_img.png 1200w" class="post-img">
</div>
</div>
</a>
<div class="mps-post-info-flex">
<span class="mps-post-category">Maps</span>
<a href="post6.html" aria-label="blog post link 6" class="mps-post-link mps-inline-block">
<h3>My Blog Post Title</h3>
<p>
Interesting stuff about maps, news, tutorials, other zillion details.
</p>
</a>
</div>
<div class="mps-author-info-flex">
<img class="mps-author-image" src="https://mps-ph.s3.us-east-2.amazonaws.com/author.png" alt="Alexa Cristina">
<p>
<a href="#">Alexa Cristina</a>
• <time datetime="2021-06-07T09:00:00+00:00" itemprop="datePublished">June 7, 2021</time> • 4 min read
</p>
</div>
</div>
</p>
</div>
<div class="items-item">
<!-- Event Post Wide -->
<p>
<div class="mps-container bd lg">
<div role="list" class="mps-post-item">
<div role="listitem">
<a href="post7.html" aria-label="blog post link 7" class="img-link wide mps-inline-block">
<img src="img/wash_hires.png" loading="lazy" alt="Washington High Resolution Images" class="post-img wide">
<div class="mps-overlay">
<div class="mps-overlay-info-flex wide">
<div class="mps-overlay-info-container">
<div class="mps-overlay-info-in">
<span class="mps-post-category color-neutral-100">Geology</span>
<h2 class="color-neutral-200">LiDAR Washington Geology</h2>
<p>
High-resolution lidar images of Washington’s geology now freely available.
</p>
<div class="mps-author-info-flex color-neutral-200">
<img class="mps-author-image" src="https://mps-ph.s3.us-east-2.amazonaws.com/author.png" alt="Alexa Cristina">
<p>
Alexa Cristina • <time datetime="2021-06-07T09:00:00+00:00" itemprop="datePublished">June 7, 2021</time> • 4 min read
</p>
</div>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</p>
</div>
<div class="items-item">
<!-- Article Hero-->
<p>
<div class="mps-container bd lg">
<div class="article-hero">
<div class="mps-overlay">
<div class="mps-overlay-info-flex">
<div class="mps-overlay-info-container">
<div class="mps-overlay-info-in">
<span class="mps-article-category">Maps</span>
<h1 class="mps-overlay-title">Procedural GL JS</h1>
<p>
3D map experiences on the web, written in JavaScript and WebGL.
</p>
<div class="mps-author-info-flex">
<img class="mps-author-image" src="https://mps-ph.s3.us-east-2.amazonaws.com/author.png" alt="Alexa Cristina">
<p>
<a href="#">Alexa Cristina</a>
• <time datetime="2021-06-07T09:00:00+00:00" itemprop="datePublished">June 7, 2021</time> • 4 min read
</p>
</div>
<div role="list" class="article-tags">
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">3D</a>
</div>
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">Maps</a>
</div>
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">LiDAR</a>
</div>
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">DEM</a>
</div>
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">WebGL</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</p>
</div>
</div>
</article>
</section>
<section id="Article" class="mps-section">
<h2>Article</h2>
<article>
<p>
Article
</p>
<!-- Article image -->
<p>article-img</p>
<p>
<div class="article-img-block sm">
<div class="article-img">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/220px-Delaunay-Triangulation.png" alt="Delaunay Triangulation">
</div>
<div class="article-img-desc">
<a href="https://en.wikipedia.org/wiki/Triangulated_irregular_network">Source</a>
</div>
<div class="article-img-text">
Triangulated irregular network.
</div>
</div>
</p>
<p>article-img-flex</p>
<p>
<div class="mps-container lg bd">
<div class="article-img-flex">
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/_117856764_rockthisone.jpg">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/_117856764_rockthisone.jpg" alt="3D map in Europe">
</a>
<div class="article-img-desc">
<a href="https://www.bbc.com/news/world-europe-56648055">bbc.com</a>
</div>
<div class="article-img-text">
Oldest bronze 3D map in Europe, 1900 BC - 1650 BC
</div>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/carte.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/carte.png" alt="Carte des Indes Orientales">
</a>
<div class="article-img-desc">
<a href="https://www.davidrumsey.com/luna/servlet/detail/RUMSEY~8~1~326565~90095122:Carte-des-Indes-Orientales-?sort=Pub_List_No_InitialSort%2CPub_Date%2CPub_List_No%2CSeries_No&qvq=q:moon%20atlas;sort:Pub_List_No_InitialSort%2CPub_Date%2CPub_List_No%2CSeries_No;lc:RUMSEY~8~1&mi=17&trs=1069#">davidrumsey.com</a>
</div>
<div class="article-img-text">
Carte des Indes Orientales, 1665.
</div>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/_117860407_rock5.jpg">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/topo.png" alt="Topographical Map of Ancient Rome">
</a>
<div class="article-img-desc">
<a href="https://www.nga.gov/collection/art-object-page.112707.html">nga.gov</a>
</div>
<div class="article-img-text">
Topographical Map of Ancient Rome, 1557.
</div>
</div>
</div>
</div>
</div>
</p>
<p>article-img-flex gallery</p>
<p>
<div class="mps-container lg bd">
<div class="article-img-flex gallery">
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l1.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l1.png" alt="Yosemite Valley 3D ex 1">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l2.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l2.png" alt="Yosemite Valley 3D ex 2">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l3.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l3.png" alt="Yosemite Valley 3D ex 3">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l4.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l4.png" alt="Yosemite Valley 3D ex 4">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l5.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l5.png" alt="Yosemite Valley 3D ex 5">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l6.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l6.png" alt="Dublin 3D ex 1">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l7.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l7.png" alt="Dublin 3D ex 2">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l8.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l8.png" alt="Dublin 3D ex 3">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l9.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l9.png" alt="Dublin 3D ex 4">
</a>
</div>
</div>
<div class="article-img-block sm">
<div class="article-img">
<a href="img/post/l10.png">
<img src="https://mps-ph.s3.us-east-2.amazonaws.com/l10.png" alt="Dublin 3D ex 5">
</a>
</div>
</div>
</div>
</div>
</p>
<p>article-tags</p>
<p>
<!-- <div class="mps-container md color-neutral-600-bk"> -->
<div role="list" class="article-tags">
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">3D</a>
</div>
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">Maps</a>
</div>
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">LiDAR</a>
</div>
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">DEM</a>
</div>
<div role="listitem" class="article-tag">
<a href="#" class="article-tag-link" rel="noopener noreferrer" target="_blank">WebGL</a>
</div>
</div>
<!-- </div> -->
</p>
</article>
</section>
<!-- Page Breaks -->
<section id="Page_Breaks" class="mps-section">
<h2>Page Breaks</h2>
<article>
<p>
Page breaks - after Bootstrap.
</p>
<div class="mps-container md">
<code class="mps-code" tabindex="0">
@media (max-width: 575.98px) {
/* Extra small devices (portrait phones, less than 576px) */