-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
1428 lines (1315 loc) · 60.9 KB
/
index.html
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 name="author" content="Glenn Sorrentino">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>🧰 Simple Design System</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-min.js"></script>
<script src="components/header/js/header.js"></script>
<script src="components/hint/js/hint.js"></script>
<script src="components/footer/js/footer.js"></script>
<script src="builder/js/builder.js"></script>
<script src="components/chat/js/chat.js"></script>
</head>
<body id="builder">
<section class="canvas">
<!-- NOTIFICATIONS -->
<p class="toast">🥳 You're one of the <a href="https://www.w3schools.com/browsers/" rel="noopener noreferrer nofollow" target="_blank">6.6% of people in the world</a> using Firefox!</p>
<!-- BODY -->
<section class="instructions hidden">
<header>
<a href="#navigation" class="assistiveText">Skip to Navigation</a>
<a href="#content" class="assistiveText">Skip to Main Content</a>
<div class="wrapper">
<div class="logoMark emptyLogo"></div>
<h1 class="logo"><a href="#">Simple Design System</a></h1>
<nav id="navigation">
<a role="button" class="navButton withUtil" tabindex="0">
<div class="menu"></div>
</a>
<ul>
<li><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/header/html/header.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Contribute</a></li>
</ul>
<a role="button" class="utilityIcon" tabindex="0">🧰</a>
</nav>
<nav id="navigation" class="staged">
<a role="button" class="navButton closeButton" tabindex="0">
<div class="close"></div>
</a>
<ul>
<li><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/header/html/header.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Contribute</a></li>
</ul>
</nav>
</div>
</header>
<!-- INTRO -->
<main id="content">
<section class="intro instructionsIntro wrapper">
<div>
<h1>Design Your Page</h1>
<p>1️⃣ Modify the page properties on the right</p>
<p>2️⃣ Scroll around to see your changes</p>
</div>
</section>
</main>
</section>
<!-- HOME TEMPLATE -->
<section class="home-template">
<header>
<a href="#navigation" class="assistiveText">Skip to Navigation</a>
<a href="#content" class="assistiveText">Skip to Main Content</a>
<div class="wrapper">
<div class="logoMark emptyLogo"></div>
<h1 class="logo"><a href="#">Simple Design System</a></h1>
<nav id="navigation">
<a role="button" class="navButton withUtil" tabindex="0">
<div class="menu"></div>
</a>
<ul>
<li><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/header/html/header.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Contribute</a></li>
</ul>
<a role="button" class="utilityIcon" tabindex="0">🧰</a>
</nav>
<nav id="navigation" class="staged">
<a role="button" class="navButton closeButton" tabindex="0">
<div class="close"></div>
</a>
<ul>
<li><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/header/html/header.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Contribute</a></li>
</ul>
</nav>
</div>
</header>
<!-- HOME - INTRO -->
<main id="content">
<section class="intro homeIntro wrapper">
<div>
<h1>Stop reinventing the wheel</h1>
<p>🔬 A research-based framework for building durable web experiences.</p>
<p><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/intro/html/home-intro.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></p>
</div>
<p class="hint">Scroll Down</p>
</section>
<!-- HOME - MISSION STATEMENT -->
<section class="statement wrapper">
<p class="emoji"><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/statement/html/statement.html" rel="noopener noreferrer nofollow" target="_blank">🏴☠️</a></p>
<p>The Simple Design System is built on the idea that <span class="highlight">good design should be free</span>. With a focus on human-centered design, this resource will be updated as data changes and trends evolve.</p>
</section>
<!-- HOME - DESIGN RESOURCES -->
<section class="content centeredContent designContent wrapper">
<h2>Design Resources</h2>
<div class="contentItem blockContent">
<div class="description">
<div class="icon figma"></div>
<h3>Figma Kit</h3>
<p>Use the design system and other resources through the Figma kit.</p>
<a role="button" class="btn" href="https://www.figma.com/file/NAqQuqB1mt4Oix3Sdyhr4L/Simple-Design-System-Kit?node-id=5%3A2362" rel="noopener noreferrer nofollow" target="_blank">Use it Now</a>
</div>
</div>
</section>
<!-- HOME - PRIMARY LIST -->
<section class="content primaryContent wrapper">
<h2>Primary Content</h2>
<div class="contentItem standardItem">
<div class="description">
<div class="icon placeholder"></div>
<h3>Standard</h3>
<p>This is a basic side-by-side layout for a content item.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-standard.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
<div class="contentItem flippedItem">
<div class="description flip">
<p class="parent">Parent</p>
<h3>Flipped</h3>
<p>When using multiple standard content components in sequence, you can flip the layout for a more dynamic presentation.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-flip.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
<div class="contentItem mobileItem">
<div class="description">
<div class="icon placeholder"></div>
<h3>Mobile</h3>
<div class="badgeContainer">
<p class="badge">Coming Soon</p>
</div>
<p>Use this content when you're showing a mobile screen. Include badges to communicate project status to visitors.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-mobile.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage mobileImage">
<img src="assets/placeholder/mobile.svg" alt="#">
</div>
</div>
<div class="contentItem featuredItem blockContent">
<div class="description">
<h3>Featured</h3>
<p>This layout puts more prominence on the image being displayed. Use it for high-priority callouts.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-featured.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
</section>
<!-- HOME - EXAMPLES -->
<section class="content centeredContent exampleContent wrapper">
<h2>In The Wild</h2>
<div class="contentItem blockContent">
<div class="description">
<p class="emoji">✊</p>
<h3>CalyxOS</h3>
<p>Everyone needs a phone. Not everyone wants to be spied on. Reclaim your privacy with CalyxOS.</p>
<a href="https://calyxos.org" rel="noopener noreferrer nofollow" target="_blank">View Site</a>
</div>
<div class="featureImage">
<img src="assets/examples/calyxos.png" alt="OnionShare Homepage">
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<p class="emoji">🧅</p>
<h3>OnionShare</h3>
<p>OnionShare is an open source tool that lets you securely and anonymously share files, host websites, and chat with friends using the Tor network.</p>
<a href="https://onionshare.org" rel="noopener noreferrer nofollow" target="_blank">View Site</a>
</div>
<div class="featureImage">
<img src="assets/examples/onionshare.png" alt="OnionShare Homepage">
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<p class="emoji">🔐</p>
<h3>Normal Security</h3>
<p>Easy ways to secure your digital life.</p>
<a href="https://normalsecurity.com" rel="noopener noreferrer nofollow" target="_blank">View Site</a>
</div>
<div class="featureImage">
<img src="assets/examples/normal-security.png" alt="Normal Security Homepage">
</div>
</div>
</section>
<!-- HOME - MORE LISTS -->
<section class="content contentRow secondaryContent wrapper">
<h2>Secondary Content</h2>
<div class="contentRowContent">
<div class="contentItem blockContent">
<div class="description">
<h3>Row Item with Images</h3>
<p>Use this when secondary content needs a supporting image.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/secondary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<h3>Row Item with Images</h3>
<p>Use this when secondary content needs a supporting image.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/secondary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
</div>
</section>
<section id="#" class="content centeredContent contentRow tertiaryContent wrapper">
<h2>Tertiary Content</h2>
<div class="contentRowContent">
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<p class="emoji">🍄</p>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
</div>
<div class="contentRowContent">
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
</div>
</section>
<section id="#" class="content minimalContent basicContent wrapper">
<h2>Basic Content</h2>
<div class="contentItem metadataItem noImage">
<div class="description">
<div class="icon placeholder"></div>
<h3><a href="#">Metadata</a></h3>
<p class="meta">US20200097481A1</p>
<p>A simple content with added metadata for secondary information.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-metadata.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem buttonItem noImage">
<div class="description">
<div class="icon placeholder"></div>
<h3><a href="#" rel="noopener noreferrer nofollow" target="_blank">Button</a></h3>
<p>Another simple content item that includes a button. Only use one primary button per page, and everywhere else use a secondary button.</p>
<a role="button" class="btn" href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/button.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent simpleItem">
<div class="description">
<div class="icon placeholder"></div>
<h3>Simple</h3>
<p>On wide viewports this content item appears centered and becomes left-aligned on smaller screens.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-simple.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem centeredContent blockContent centeredItem">
<div class="description">
<div class="icon placeholder"></div>
<p class="parent">Parent</p>
<h3>Centered</h3>
<div class="badgeContainer">
<p class="badge">🎁 Badge 1</p>
<p class="badge">🎉 Badge 2</p>
<p class="badge">✌️Badge 3</p>
</div>
<p>This content item stays centered on all viewport sizes. You can also include emojis in your badges for a fun presentation.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-centered-badges.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
</section>
<!-- HOME - ABOUT AND CONTACT -->
<section id="#" class="content itemAvatar minimalContent wrapper">
<h2>About</h2>
<div class="contentItem noImage">
<div class="description">
<div class="icon placeholder avatar"></div>
<p>This is a good layout for an "About" section where you might want to include a larger avatar. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim
ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat
non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/about/html/about.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
</section>
<section id="#" class="content minimalContent itemContent wrapper">
<h2>Contact</h2>
<div class="contentItem noImage">
<div class="description">
<p class="emoji">✌️</p>
<p>Use this for a contact section where you'll need to content out the channels where you can be reached.</p>
<ul>
<li><span class="icon placeholder"></span><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/contact/html/contact.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><span class="icon placeholder"></span><a href="#" rel="noopener noreferrer nofollow" target="_blank">Contact Link</a></li>
<li><span class="icon placeholder"></span><a href="#" rel="noopener noreferrer nofollow" target="_blank">Contact Link</a></li>
</ul>
</div>
</div>
</section>
</main>
<footer class="wrapper">
<p>This work is licensed under a <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener noreferrer nofollow">CC BY NC 4.0 license</a>.</p>
<p>© <span id="date">?</span> <a href="https://glennsorrentino.com" target="_blank" rel="noreferrer nooopener">Glenn Sorrentino</a>. Created with the <a href="https://glenn-sorrentino.github.io/design-system" target="_blank"
rel="noopener noreferrer nofollow">Simple Design System</a>.</p>
<p>🛡 zs1lqjvywdg308kxrn6x8xduqm5j6j8fg28tertjtayfj8hwm0gvk5gyh3jd07p5w5fe7r56xjr2gj</p>
</footer>
</section>
<!-- SECONDARY TEMPLATE -->
<section class="secondary-template hidden">
<header>
<a href="#navigation" class="assistiveText">Skip to Navigation</a>
<a href="#content" class="assistiveText">Skip to Main Content</a>
<div class="wrapper">
<div class="logoMark emptyLogo"></div>
<h1 class="logo"><a href="#">Simple Design System</a></h1>
<nav id="navigation">
<a role="button" class="navButton withUtil" tabindex="0">
<div class="menu"></div>
</a>
<ul>
<li><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/header/html/header.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Contribute</a></li>
</ul>
<a role="button" class="utilityIcon" tabindex="0">🧰</a>
</nav>
<nav id="navigation" class="staged">
<a role="button" class="navButton closeButton" tabindex="0">
<div class="close"></div>
</a>
<ul>
<li><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/header/html/header.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Contribute</a></li>
</ul>
</nav>
</div>
</header>
<!-- SECONDARY - INTRO -->
<main id="content">
<section class="secondaryIntro withNav">
<div class="wrapper">
<h1>Secondary Page Intro</h1>
<p>💻 A design system starter kit or a complete, living solution. <a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/intro/html/secondary-intro.html" rel="noopener noreferrer nofollow"
target="_blank">View Component Code</a></p>
</div>
</section>
<!-- SECONDARY - BODY -->
<section class="tabs wrapper">
<nav>
<a class="selected" href="#section1" rel="noopener noreferrer nofollow" target="_blank">Section 1</a>
<a href="#section2">Longer Section Name 2</a>
<a href="#section3">Section 3</a>
<a href="#section2">Section Name 4</a>
</nav>
</section>
<!-- SECONDARY - PRIMARY LIST -->
<section class="content primaryContent wrapper">
<h2>Primary Content</h2>
<div class="contentItem standardItem">
<div class="description">
<div class="icon placeholder"></div>
<h3>Standard</h3>
<p>This is a basic side-by-side layout for a content item.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-standard.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
<div class="contentItem flippedItem">
<div class="description flip">
<p class="parent">Parent</p>
<h3>Flipped</h3>
<p>When using multiple standard content components in sequence, you can flip the layout for a more dynamic presentation.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-flip.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
<div class="contentItem mobileItem">
<div class="description">
<div class="icon placeholder"></div>
<h3>Mobile</h3>
<div class="badgeContainer">
<p class="badge">Coming Soon</p>
</div>
<p>Use this content when you're showing a mobile screen. Include badges to communicate project status to visitors.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-mobile.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage mobileImage">
<img src="assets/placeholder/mobile.svg" alt="#">
</div>
</div>
<div class="contentItem featuredItem blockContent">
<div class="description">
<h3>Featured</h3>
<p>This layout puts more prominence on the image being displayed. Use it for high-priority callouts.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-featured.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
</section>
<section class="content wrapper">
<div class="contentItem featuredItem blockContent">
<div class="description">
<h2>The Design Squiggle</h2>
<p>An illustration of the design process and journey from uncertainly to clarity by Damien Newman.</p>
<a href="https://thedesignsquiggle.com" rel="noopener noreferrer nofollow" target="_blank">Learn More</a>
</div>
<div class="featureImage squiggle">
</div>
</div>
</section>
<!-- SECONDARY - MORE LISTS -->
<section class="content contentRow secondaryContent wrapper">
<h2>Secondary Content</h2>
<div class="contentRowContent">
<div class="contentItem blockContent">
<div class="description">
<h3>Row Item with Images</h3>
<p>Use this when secondary content needs a supporting image.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/secondary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<h3>Row Item with Images</h3>
<p>Use this when secondary content needs a supporting image.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/secondary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
<div class="featureImage">
<img src="assets/placeholder/image.svg" alt="#">
</div>
</div>
</div>
</section>
<section id="#" class="content centeredContent contentRow tertiaryContent wrapper">
<h2>Tertiary Content</h2>
<div class="contentRowContent">
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<p class="emoji">🍄</p>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
</div>
<div class="contentRowContent">
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent">
<div class="description">
<div class="icon placeholder"></div>
<h3>Row Item</h3>
<p>For secondary or tertiary content that doesn't need a lot of space.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/tertiary.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
</div>
</section>
<section id="#" class="content minimalContent basicContent wrapper">
<h2>Basic Content</h2>
<div class="contentItem metadataItem noImage">
<div class="description">
<div class="icon placeholder"></div>
<h3><a href="#">Metadata</a></h3>
<p class="meta">US20200097481A1</p>
<p>A simple content with added metadata for secondary information.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-metadata.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem buttonItem noImage">
<div class="description">
<div class="icon placeholder"></div>
<h3><a href="#" rel="noopener noreferrer nofollow" target="_blank">Button</a></h3>
<p>Another simple content item that includes a button. Only use one primary button per page, and everywhere else use a secondary button.</p>
<a role="button" class="btn" href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/button.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem blockContent simpleItem">
<div class="description">
<div class="icon placeholder"></div>
<h3>Simple</h3>
<p>On wide viewports this content item appears centered and becomes left-aligned on smaller screens.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-simple.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
<div class="contentItem centeredContent blockContent centeredItem">
<div class="description">
<div class="icon placeholder"></div>
<p class="parent">Parent</p>
<h3>Centered</h3>
<div class="badgeContainer">
<p class="badge">🎁 Badge 1</p>
<p class="badge">🎉 Badge 2</p>
<p class="badge">✌️Badge 3</p>
</div>
<p>This content item stays centered on all viewport sizes. You can also include emojis in your badges for a fun presentation.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/item-centered-badges.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
</div>
</div>
</section>
</main>
<footer class="wrapper">
<p>This work is licensed under a <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener noreferrer nofollow">CC BY NC 4.0 license</a>.</p>
<p>© <span id="date">?</span> <a href="https://glennsorrentino.com" target="_blank" rel="noreferrer nooopener">Glenn Sorrentino</a>. Created with the <a href="https://glenn-sorrentino.github.io/design-system" target="_blank"
rel="noopener noreferrer nofollow">Simple Design System</a>.</p>
<p>🛡 zs1lqjvywdg308kxrn6x8xduqm5j6j8fg28tertjtayfj8hwm0gvk5gyh3jd07p5w5fe7r56xjr2gj</p>
</footer>
</section>
<!-- ARTICLE TEMPLATE -->
<section class="article-template hidden">
<header>
<a href="#navigation" class="assistiveText">Skip to Navigation</a>
<a href="#content" class="assistiveText">Skip to Main Content</a>
<div class="wrapper">
<div class="logoMark emptyLogo"></div>
<h1 class="logo"><a href="#">Simple Design System</a></h1>
<nav id="navigation">
<a role="button" class="navButton withUtil" tabindex="0">
<div class="menu"></div>
</a>
<ul>
<li><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/header/html/header.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Contribute</a></li>
</ul>
<a role="button" class="utilityIcon" tabindex="0">🧰</a>
</nav>
<nav id="navigation" class="staged">
<a role="button" class="navButton closeButton" tabindex="0">
<div class="close"></div>
</a>
<ul>
<li><a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/header/html/header.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Contribute</a></li>
</ul>
</nav>
</div>
</header>
<!-- ARTICLE - INTRO -->
<main id="content">
<section class="wrapper secondaryIntro articleIntro">
<div>
<h1>A Cypherpunk's Manifesto</h1>
<p class="meta">✍️ <a class="authorName" href="https://www.activism.net/cypherpunk/manifesto.html" rel="noopener noreferrer nofollow" target="_blank">Eric Hughes</a>, March 9th, 1993</p>
</div>
</section>
<!-- ARTICLE - ARTICLE -->
<section class="content articleSection wrapper">
<article>
<p>Privacy is necessary for an open society in the electronic age. Privacy is not secrecy. A private matter is something one doesn't want the whole world to know, but a secret matter is something one doesn't want anybody to know. Privacy
is the
power to selectively reveal oneself to the world.</p>
<p>If two parties have some sort of dealings, then each has a memory of their interaction. Each party can speak about their own memory of this; how could anyone prevent it? One could pass laws against it, but the freedom of speech, even
more than
privacy, is fundamental to an open society; we seek not to restrict any speech at all. If many parties speak together in the same forum, each can speak to all the others and aggregate together knowledge about individuals and other
parties. The
power of electronic communications has enabled such group speech, and it will not go away merely because we might want it to.</p>
<p>Since we desire privacy, we must ensure that each party to a transaction have knowledge only of that which is directly necessary for that transaction. Since any information can be spoken of, we must ensure that we reveal as little as
possible.
In most cases personal identity is not salient. When I purchase a magazine at a store and hand cash to the clerk, there is no need to know who I am. When I ask my electronic mail provider to send and receive messages, my provider need
not know
to whom I am speaking or what I am saying or what others are saying to me; my provider only need know how to get the message there and how much I owe them in fees. When my identity is revealed by the underlying mechanism of the
transaction, I
have no privacy. I cannot here selectively reveal myself; I must always reveal myself.</p>
<p>Therefore, privacy in an open society requires anonymous transaction systems. Until now, cash has been the primary such system. An anonymous transaction system is not a secret transaction system. An anonymous system empowers
individuals to
reveal their identity when desired and only when desired; this is the essence of privacy.</p>
<p>Privacy in an open society also requires cryptography. If I say something, I want it heard only by those for whom I intend it. If the content of my speech is available to the world, I have no privacy. To encrypt is to indicate the
desire for
privacy, and to encrypt with weak cryptography is to indicate not too much desire for privacy. Furthermore, to reveal one's identity with assurance when the default is anonymity requires the cryptographic signature.</p>
<p>We cannot expect governments, corporations, or other large, faceless organizations to grant us privacy out of their beneficence. It is to their advantage to speak of us, and we should expect that they will speak. To try to prevent
their speech
is to fight against the realities of information. Information does not just want to be free, it longs to be free. Information expands to fill the available storage space. Information is Rumor's younger, stronger cousin; Information is
fleeter
of foot, has more eyes, knows more, and understands less than Rumor.</p>
<p>We must defend our own privacy if we expect to have any. We must come together and create systems which allow anonymous transactions to take place. People have been defending their own privacy for centuries with whispers, darkness,
envelopes,
closed doors, secret handshakes, and couriers. The technologies of the past did not allow for strong privacy, but electronic technologies do.</p>
<p>We the Cypherpunks are dedicated to building anonymous systems. We are defending our privacy with cryptography, with anonymous mail forwarding systems, with digital signatures, and with electronic money.</p>
<p>Cypherpunks write code. We know that someone has to write software to defend privacy, and since we can't get privacy unless we all do, we're going to write it. We publish our code so that our fellow Cypherpunks may practice and play
with it.
Our code is free for all to use, worldwide. We don't much care if you don't approve of the software we write. We know that software can't be destroyed and that a widely dispersed system can't be shut down.</p>
<p>Cypherpunks deplore regulations on cryptography, for encryption is fundamentally a private act. The act of encryption, in fact, removes information from the public realm. Even laws against cryptography reach only so far as a nation's
border
and the arm of its violence. Cryptography will ineluctably spread over the whole globe, and with it the anonymous transactions systems that it makes possible.</p>
<p>For privacy to be widespread it must be part of a social contract. People must come and together deploy these systems for the common good. Privacy only extends so far as the cooperation of one's fellows in society. We the Cypherpunks
seek your
questions and your concerns and hope we may engage you so that we do not deceive ourselves. We will not, however, be moved out of our course because some may disagree with our goals.</p>
<p>The Cypherpunks are actively engaged in making the networks safer for privacy. Let us proceed together apace.</p>
<p>Onward.</p>
</article>
</section>
<!-- ARTICLE - PAGINATION -->
<section class="content centeredContent buttonGroupContent wrapper">
<div class="contentItem blockContent">
<div class="description">
<h3>Pagination</h3>
<p>Use this for a step-by-step wizard, pagination for a training guide, or generally when you need more than one call-to-action.</p>
<a href="https://github.com/glenn-sorrentino/design-system/blob/main/components/content/html/pagination.html" rel="noopener noreferrer nofollow" target="_blank">View Component Code</a>
<div class="buttonGroup">
<a role="button" class="btn" href="#">Previous</a>
<a role="button" class="btn" href="#">Next</a>
</div>
</div>
</div>
</section>
</main>
<footer class="wrapper">
<p>This work is licensed under a <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener noreferrer nofollow">CC BY NC 4.0 license</a>.</p>
<p>© <span id="date">?</span> <a href="https://glennsorrentino.com" target="_blank" rel="noreferrer nooopener">Glenn Sorrentino</a>. Created with the <a href="https://glenn-sorrentino.github.io/design-system" target="_blank"
rel="noopener noreferrer nofollow">Simple Design System</a>.</p>
<p>🛡 zs1lqjvywdg308kxrn6x8xduqm5j6j8fg28tertjtayfj8hwm0gvk5gyh3jd07p5w5fe7r56xjr2gj</p>
</footer>
</section>
<!-- TABLE TEMPLATE -->
<section class="table-template hidden">
<header class="appHeader">
<a href="#navigation" class="assistiveText">Skip to Navigation</a>
<a href="#content" class="assistiveText">Skip to Main Content</a>
<div class="wrapper">
<div class="logoMark emptyLogo"></div>
<h1 class="logo"><a href="#">Simple Design System</a></h1>
<nav id="navigation">
<a role="button" class="navButton withUtil" tabindex="0">
<div class="menu"></div>
</a>
<ul>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Download Files</a></li>
</ul>
<a role="button" class="utilityIcon" tabindex="0">🧰</a>
</nav>
<nav id="navigation" class="staged">
<a role="button" class="navButton closeButton" tabindex="0">
<div class="close"></div>
</a>
<ul>
<li><a role="button" class="btn primaryBtn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Download Files</a></li>
</ul>
</nav>
</div>
</header>
<section class="window emptyTable hidden">
<div class="empty wrapper centeredContent">
<div class="description">
<!-- FOR EMPTY STATE ILLUSTRATIONS -->
<!-- <div class="emptyBg"></div> -->
<p>Add the files you want to share, then press Send Files</p>
<a role="button" class="btn firstAction" href="#" rel="noopener noreferrer nofollow" target="_blank">Add Files</a>
</div>
</div>
</section>
<section class="tableContent">
<div class="listUtilities wrapper">
<p class="meta">24 items, 5.12GB</p>
</div>
<section class="window">
<table>
<tr>
<th>Name</th>
<th>Size</th>
<th>Kind</th>
</tr>
<tr>
<td><a href="examples/onionshare/chat.html" rel="noopener noreferrer nofollow" target="_blank">examples/onionshare/chat.html</a></td>
<td>3KB</td>
<td>HTML</td>
</tr>
<tr>
<td><a href="examples/onionshare/receive.html" rel="noopener noreferrer nofollow" target="_blank">examples/onionshare/receive.html</a></td>
<td>3KB</td>
<td>HTML</td>
</tr>
<tr>
<td><a href="examples/onionshare/share-zero-state.html" rel="noopener noreferrer nofollow" target="_blank">examples/onionshare/share-zero-state.html</a></td>
<td>1KB</td>
<td>HTML</td>
</tr>
<tr>
<td><a href="docs/nng-accessible-web-design.pdf">docs/nng-accessible-web-design.pdf</a></td>
<td>6.5MB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="docs/nng-ux-research-cheat-sheet.pdf">docs/nng-ux-research-cheat-sheet.pdf</a></td>
<td>604KB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="https://glennsorrentino.com/assets/tor/docs/IEEE-SNP-Onion-Binding.pdf">IEEE-SNP-Onion-Binding.pdf</a></td>
<td>2.5MB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="https://glennsorrentino.com/assets/harvard/docs/harvard-new-america-data-privacy.pdf">harvard-new-america-data-privacy.pdf</a></td>
<td>3.4MB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="https://glennsorrentino.com/assets/wef/docs/WEF_Redesigning_Data_Privacy_Report_2020.pdf">WEF_Redesigning_Data_Privacy_Report_2020.pdf</a></td>
<td>1.4MB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="#">2019-W2.pdf</td>
<td>120KB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="#">avatar.png</a></td>
<td>12KB</td>
<td>PNG</td>
</tr>
<tr>
<td><a href="#">index.html</a></td>
<td>10KB</td>
<td>HTML</td>
</tr>
<tr>
<td><a href="#">style.css</a></td>
<td>210KB</td>
<td>CSS</td>
</tr>
<tr>
<td><a href="#">main.js</a></td>
<td>45KB</td>
<td>JS</td>
</tr>
<tr>
<td><a href="#">reset.css</a></td>
<td>14KB</td>
<td>CSS</td>
</tr>
<tr>
<td><a href="#">placeholder.svg</a></td>
<td>2KB</td>
<td>SVG</td>
</tr>
<tr>
<td><a href="#">favicon.ico</a></td>
<td>1KB</td>
<td>ICO</td>
</tr>
<tr>
<td><a href="#">research.pdf</a></td>
<td>4MB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="#">HPSCAN_20210411172441529_2021-04-11_172529347.pdf</a></td>
<td>1.1MB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="#">etrade-tax-supplement.pdf</a></td>
<td>765KB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="#">development_plans.pdf</a></td>
<td>11MB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="#">logo.svg</a></td>
<td>2KB</td>
<td>SVG</td>
</tr>
<tr>
<td><a href="#">financial-information-FY23.pdf</a></td>
<td>874KB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="#">updated-research.pdf</a></td>
<td>4.2MB</td>
<td>PDF</td>
</tr>
<tr>
<td><a href="#">click-me.exe</a></td>
<td>1.3MB</td>
<td>EXE</td>
</tr>
<tr>
<td><a href="#">operating-instructions.pdf</a></td>
<td>639KB</td>
<td>PDF</td>
</tr>
</table>
</section>
</section>
</section>
<!-- CHAT TEMPLATE -->
<section class="chat-template hidden">
<header class="appHeader">
<a href="#navigation" class="assistiveText">Skip to Navigation</a>
<a href="#content" class="assistiveText">Skip to Main Content</a>
<div class="wrapper">
<div class="logoMark emptyLogo"></div>
<h1 class="logo"><a href="#">Simple Design System</a></h1>
<nav id="navigation">
<a role="button" class="navButton withUtil" tabindex="0">
<div class="menu"></div>
</a>
<ul>
<li><a role="button" class="btn" href="https://github.com/glenn-sorrentino/design-system" rel="noopener noreferrer nofollow" target="_blank">Leave Chat</a></li>