-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
2863 lines (2810 loc) · 214 KB
/
404.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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>404 ❌ STYLE-GUIDE ≠ FOUND : Has the light gone out for you? Because the light's gone out for me</title>
<meta name="description" content="The resume of Joel Dombek, a multi-disciplinary designer : developer and brand specialist with a focus on user interaction and design.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="twitter:card" content="summary" />
<meta name="twitter:description" content="The resume of Joel Dombek, a multi-disciplinary designer : developer and brand specialist with a focus on user interaction and design." />
<meta name="twitter:title" content="JJoel Dombek - Multi-Disciplinary Designer & Developer" />
<meta name="twitter:site" content="@joeldombek" />
<meta name="twitter:creator" content="@joeldombek" />
<link rel='shortlink' href='http://www.joeldombek.com/' />
<meta property="og:url" content="http://joeldom.github.io/resume/" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Joel Dombek - Multi-Disciplinary Designer & Developer" />
<meta property="og:description" content="The resume of Joel Dombek, a multi-disciplinary designer : developer and brand specialist with a focus on user interaction and design." />
<meta property="og:image" content="https://joeldom.github.io/resume/jd-logo-reflex.gif" />
<!--==============================================================================================================================
@@@ @@@@@@ @@@@@@@@ @@@ @@@@@@@ @@@@@@ @@@@@@@@@@ @@@@@@@ @@@@@@@@ @@@ @@@ @@@@@@@ @@@@@@ @@@@@@@@@@
@@@ @@@@@@@@ @@@@@@@@ @@@ @@@@@@@@ @@@@@@@@ @@@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@ @@@ @@@@@@@@ @@@@@@@@ @@@@@@@@@@@
@@! @@! @@@ @@! @@! @@! @@@ @@! @@@ @@! @@! @@! @@! @@@ @@! @@! !@@ !@@ @@! @@@ @@! @@! @@!
!@! !@! @!@ !@! !@! !@! @!@ !@! @!@ !@! !@! !@! !@ @!@ !@! !@! @!! !@! !@! @!@ !@! !@! !@!
!!@ @!@ !@! @!!!:! @!! @!@ !@! @!@ !@! @!! !!@ @!@ @!@!@!@ @!!!:! @!@@!@! !@! @!@ !@! @!! !!@ @!@
!!! !@! !!! !!!!!: !!! !@! !!! !@! !!! !@! ! !@! !!!@!!!! !!!!!: !!@!!! !!! !@! !!! !@! ! !@!
!!: !!: !!! !!: !!: !!: !!! !!: !!! !!: !!: !!: !!! !!: !!: :!! :!! !!: !!! !!: !!:
!!: :!: :!: !:! :!: :!: :!: !:! :!: !:! :!: :!: :!: !:! :!: :!: !:! :!: :!: :!: !:! :!: :!:
::: : :: ::::: :: :: :::: :: :::: :::: :: ::::: :: ::: :: :: :::: :: :::: ::: ::: ::: ::: ::: ::::: :: ::: ::
: ::: : : : : :: :: : :: : : :: : : : : : : : :: : :: : :: :: : :: ::: :: :: : : : : : :
~ ~ ~ ~ ~ ~ v404 ~ ~ ~ ~ ~ ~
@@@@@@ @@@@@@@ @@@ @@@ @@@ @@@@@@@@ @@@@@@@ @@@ @@@ @@@ @@@@@@@ @@@@@@@@
!@@ @!! @@! !@@ @@! @@! !@@ @@! @@@ @@! @@! @@@ @@!
!@@!! @!! !@!@! @!! @!!!:! !@! @!@!@ @!@ !@! !!@ @!@ !@! @!!!:!
!:! !!: !!: !!: !!: :!! !!: !!: !!! !!: !!: !!! !!:
::.: : : .: : ::.: : : :: :: :: :: : :.:: : : :: : : : :: ::
http://www.kammerl.de/ascii/AsciiSignature.php
===================================== Hi, there! Taking a look at my code I see. Nice! =======================================-->
<!-- bootstrap 3.37 CDN-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- bootstrap 4.4.0 CDN -->
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> -->
<!-- bootstrap 5.0.1 CDN -->
<!-- <link rel="stylesheet" href="https://cdn.usebootstrap.com/bootstrap/5.0.1/css/bootstrap.min.css"> -->
<link rel="stylesheet" href="css/timeline.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/plus.css">
<link rel="stylesheet" href="css/breadcrumb.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic-ext,latin-ext">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i|Roboto+Mono:100,100i,300,300i,400,400i,500,500i,700,700i&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="css/void.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/theme.css">
<script type="text/javascript" src="js/typed.min.js"></script>
<script src="https://unpkg.com/freezeframe/dist/freezeframe.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/freezeframe@3.0.10/build/css/freezeframe_styles.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
</head>
<!-- =========================================================
TO DO
++++ new >'22
[ ] fix scrollspy anchors with Content
[ ] Typography Samples section write up
[ ] Add IBM fonts
[ ] Fix filler copy with real thought sections
[ ] Clean up /dir so repo looks nicer !!!
++++ old <'22
[ ] Fix panel to display differently on mobile
[ ] Assign ID anchors to sections
[ ] Finish styling of standard inputs
[ ] Align list items into frame
[ ] Fix syntax highlighting
===========================================================-->
<body class="dark-mode" data-spy="scroll" data-target="#side-nav" data-offset="50" bgcolor="#ffffff" style="-webkit-text-size-adjust:none;" bottommargin="0" leftmargin="0" topmargin="0" rightmargin="0" marginheight="0" marginwidth="0">
<style type="text/css">
/* div.preheader {
display: none!important;
}
.ii a[href] {
color: #999999!important;
} */
</style>
<div id="panel">
<div id="sg-logo">
<a class="navbar-brand" href="https://joeldom.github.io/style-guide/">
<span class="navbar-brand-default">4<strong>ZERO</strong>4</span>
<span class="navbar-brand-hidden">Go <strong>Home</strong></span>
</a>
</div>
<div class="col-xs-12">
<div data-spy="affix" data-offset-top="365" data-offset-bottom="200">
<nav class="bs-docs-sidebar">
<ul id="sidebar" class="nav nav-stacked fixed">
<li><a href="#getting-started">Alpha</a>
<ul class="nav nav-stacked">
<li><a href="#the-begining">The Beginning</a></li>
<li><a href="#into-the-void">Into the Void</a></li>
<li><a href="#Goals">Goals</a>
</li>
</ul>
</li>
<li><a href="#Color">Color</a>
<ul class="nav nav-stacked">
<li><a href="#Primary-Colors">Primary</a></li>
<li><a href="#Secondary-Colors">Secondary</a></li>
<li><a href="#Alternate-Colors">Alternate</a></li>
<li><a href="#ColorUsage">Usage</a></li>
</ul>
</li>
<li><a href="#Typography">Typography</a>
<ul class="nav nav-stacked">
<li><a href="#typography-roboto">Roboto</a></li>
<li><a href="#typography-roboto-mono">Roboto Mono</a></li>
<li><a href="#typography-NotoSans">Noto Sans</a></li>
<li><a href="#typography-Helvetica">Helvetica</a></li>
<li><a href="#Quotes">Quotes</a></li>
<li><a href="#Article">Article</a>
<ul class="nav nav-stacked">
<li><a href="#Split">Split Article</a></li>
<li><a href="#ArticleImages">Article Images</a></li>
<li><a href="#ContentGrid">Content Grid</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#Buttons">Buttons</a>
<ul class="nav nav-stacked">
<li><a href="#ButtonUsage">Usage</a></li>
<li><a href="#Pagination">Pagination</a></li>
</ul>
</li>
<li><a href="#Timeline">Timeline</a></li>
<li><a href="#Elements">Elements</a>
<ul class="nav nav-stacked">
<li><a href="#Multi-Step">Multi-Step</a></li>
<li><a href="#Loader">Loader</a></li>
<li><a href="#Progress-Bar">Progress Bar</a></li>
<li><a href="#Calendar">Calendar</a></li>
<li><a href="#Forms-Inputs">Forms & Inputs</a>
<ul class="nav nav-stacked">
<li><a href="#PrettyForm">Pretty Form</a></li>
<li><a href="#BasicForm">Basic Form</a></li>
</ul>
</li>
<li><a href="#Lists">Lists</a>
<ul class="nav nav-stacked">
<li><a href="#UnorderedLists">Unordered Lists</a></li>
<li><a href="#OrderedLists">Ordered lists</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#CodePre">Code</a>
<ul class="nav nav-stacked">
<li><a href="#CodePre">Preformatted Code</a></li>
<li><a href="#CodeVariables">Variables</a></li>
<li><a href="#CodeClasses">Classes</a></li>
</ul>
</li>
<li><a href="#Icons">Icons</a></li>
<li><a href="#Images">Images</a>
<ul class="nav nav-stacked">
<li><a href="#Aesthetic">Aesthetic</a></li>
<li><a href="#Inspiration">Inspiration</a></li>
<li><a href="#Mood">Mood</a></li>
<li><a href="#Patterns">Patterns</a></li>
<li><a href="#Samples">Coming Soon...</a></li>
</ul>
</li>
<li class="back-to-top"><a id="back-to-top" class="back-to-top" href="#header">Back to top</a></li>
<li><small style="margin: 0 0 0 2em;">ver 3:06.16.2024</small></li>
<li>
<a href="https://joeldom.github.io/redesign/" class="brand"><img style="max-width: 40px; display: block; margin: 40px auto;" src="https://joeldom.github.io/asset/chip-logo.png" /></a>
</li>
<button title="Light / Dark" style="display: block; margin: 0 auto;" id="themeSwitch"><i class="fas fa-moon"></i></button>
<button title="See lights" style="display: block; margin: 0 auto;" id="lightSwitch"><i class="fas fa-bolt"></i></button>
</ul>
<!-- <div class="viewport">Viewport: <span id="monitor"></span>px</div> -->
</div>
</nav>
</div>
</div>
<div id="main" class="container">
<a class="anchor vspace" id="header"></a>
<div class="row">
<div class="col-xs-12 start">
<img class="img-responsive" src="https://joeldom.github.io/asset/images/styleguide-banner.png" style="margin: -1px 0 0 0">
</div>
</div>
<a class="anchor" id="getting-started"></a>
<div class="row style-guide">
<div class="col-xs-12">
<h2>The Beginning</h2>
<a class="anchor" id="the-begining"></a>
<p>This style guide is aimed to assist in mocking up and testing new layout and styles as well as keep a unified branding presence that is easily accessble wherever needed. It will show combinations of styles and content with</p>
<a class="anchor" id="into-the-void"></a>
<h3 class="section__header">Into the Void</h3>
<p>When starting a project, it’s best not to reinvent the wheel. It’s most efficient to establish a templated approach that works best for you, meaning you should adapt formats and builds that have worked before and apply new solutions and
custom options as necessary.</p>
<p>It is important to remember that <em>"DSG is a branded house, and not a house of brands"</em>. Our look and feel as well as our voice should feel like our own and not one that is merely and echo or repitition of our vendors.</p>
<!-- TODO: add the correct figma project with clean preview -->
<!-- <iframe style="border: none;" width="100%" height="450" src="https://www.figma.com/embed?embed_host=share&url=https://www.figma.com/file/V7PdbXTTVTx72gMZgbNV6BTq/p-Phoenix-Greybox-DSG" allowfullscreen></iframe> -->
<a class="anchor" id="Goals"></a>
<h3>Goals</h3>
<ol class="content faq">
<li hbox="">
<a class="anchor" id="Goals1"></a>
<div>
<p style="margin-bottom:5px">What is the "Audio Equalizer and Amplifier" extension and how does it work?</p>
<p>This extension is used to have control over audio playing of your browser. It can control the volume level as well as per-frequency amplification levels. The extension offers presets for "Classical", "Club", "Custom", "Default",
"Live", "Laptop Speakers/Headphone", "Rock", "Pop", "Full Bass and Treble", "Full Bass", "Full Treble", "Soft", "Party", "Ska", "Soft Rock", "Large Hall", "Reggae", "Techno" categories. The "Default" leveling can be used
to only control volume since there is no amplification per frequency range. There is a "Custom" level that basically stores what levels the user adjust in the UI. These levels are persistent per user profile. If you need
to have multiple custom levels use profiling section to create different profiles. Currently, the extension supports adjusting levels for 60, 170, 310, 600, 1K, 3K, 6K, 12K, 14K, 16K frequency ranges which is equal to what
VLC media player offers.</p>
</div>
</li>
<li hbox="">
<a class="anchor" id="Goals2"></a>
<div>
<p style="margin-bottom:5px">I am a heavy YouTube user and I need to only control YouTube's player. Is it possible to limit the controller to YouTube?</p>
<p>There is an exact same extension which is only limited to YouTube. Basically when the extension is enabled from the toolbar area, it only injects the controlling script into the YouTube and YouTube Music pages. This way only
YouTube player is controllable. If you are only interested in YouTube player, use this extension instead. Note that these add-ons are conflicting with each other. You can only have one installed.</p>
<ul>
<li>Audio Equalizer and Amplifier (<a href="https://addons.mozilla.org/firefox/addon/audio-equalizer-and-amplifier/" rel="noopener" target="_blank">Firefox</a>, <a href="https://chrome.google.com/webstore/detail/audio-equalizer/fgjoaiofojbppcbaghehnpofkbhhclfl/"
rel="noopener" target="_blank">Chrome</a>)</li>
<li>YouTube Audio Equalizer and Amplifier (<a href="https://addons.mozilla.org/firefox/addon/youtube-audio-equalizer/" rel="noopener" target="_blank">Firefox</a>, <a href="https://chrome.google.com/webstore/detail/youtube-equalizer/gickoboopickicokhpehaeohkcoiiech/"
rel="noopener" target="_blank">Chrome</a>)</li>
</ul>
<p></p>
</div>
</li>
<li hbox="">
<a class="anchor" id="Goals3"></a>
<div>
<p style="margin-bottom:5px">What's new in this version?</p>
<p>Please check the <a href="#log-container" data-scroll="">Logs</a> section.</p>
</div>
</li>
<li hbox="">
<div>
<p style="margin-bottom:5px">Can I have multiple user-defined leveling for frequency bands?</p>
<p>Yes, there is an "Add" button next to the profile selection. Use that button to duplicate the current profile in a new name. Note that the name of each profile needs to be unique. Now adjust the levels manually or from the
default presets. You can also adjust the volume level for each profile as well. There is no save button. The extension stores your settings when there is a change in the configuration. When a profile is changed, if the
extension is enabled, the changes will be applied to the active players.</p>
</div>
</li>
<li hbox="">
<div>
<p style="margin-bottom:5px">What is the difference between keeping the extension enabled when the "Default" profile (falt one) selected and disabling the extension from the popup?</p>
<p>When the extension is disabled from the toolbar popup, the extension will not monitor web navigation anymore. It means that the controlling script is not being injected to the browser tabs or in other words there is no control
over the audio playing. However, when the extension is enabled and the default profile is selected, the script is being injected to all tabs while it practically does nothing. This is useful to control the volume level
(pre-amplification level) only. Note that if for instance the extension is in the disabled mode, and you want to change the volume, you will have to first enable the extension from the popup and then refresh the tab to
allow the controlling script to be injected first.</p>
</div>
</li>
<li hbox="">
<div>
<p style="margin-bottom:5px">Should I keep the extension disabled from the popup when I am not using it or keep it enabled and use the default flat profile?</p>
<p>It really depends on your usage. If you don't mind refreshing the active tab for the changes to be applied, it is recommended to disable the extension from the toolbar area. This way the extension is not monitoring your web
navigation at all and hence does not use any resource since it uses a non-persistent background script. However, if you prefer to be able to control the volume while the player is playing without the need to refresh the
tab, you need to keep the extension enabled and to prevent audio equalization, use the flat profile (the default profile).</p>
</div>
</li>
<li hbox="">
<div>
<p style="margin-bottom:5px">Can I use this extension when I already have another extension that globally controls audio equalization or audio volume?</p>
<p>Nope! you can only have a single add-on that controls audio equalization. This is the limitation of the JavaScript API. There is only one allowed media node that can control each media element. So if a website has already had
a media node, neither this extension nor other similar extensions cannot control the media playing of this page.</p>
</div>
</li>
<li hbox="">
<div>
<p style="margin-bottom:5px">Why does this extension not work on some websites?</p>
<p>There are two cases where the extension cannot function as expected. 1) When you have another extension that generates audio node and this audio node is created before this extension sets its own node. In this case, the former
extension is in control. In general, it is not recommended to have multiple extensions that do the same or similar jobs since they can conflict. 2) When a webpage has its own media node and this node is in control. Again
since only one node is accepted, there is no way to get the control.</p>
</div>
</li>
<li hbox="">
<div>
<p style="margin-bottom:5px">What is the meaning of the persist checkbox in the popup window?</p>
<p>If you want to keep the extension enabled after a restart, this option must be checked, otherwise, the extension disables itself after a relaunch.</p>
</div>
</li>
</ol>
<h4 class="section__header" style="padding: 3rem 0 8px 0;">Disclaimer</h4>
<p><strong>This is a WORK IN PROGRESS!</strong> Everything belonging to in here is in a state of flux. This is a living <code>.doc</code>. I am either aware of the issue or perhaps <a target="_blank" title="x.com/joeldombek" href="https://twitter.com/joeldombek">hit me up here</a> to discuss.
</p>
<br class="mb-5" />
</div>
</div>
<div class="row">
<div class="col-xs-12 start">
<img class="img-responsive" src="https://joeldom.github.io/asset/images/styleguide-color-pattern.png" style="margin: -1px 0 0 0">
</div>
</div>
<div class="row style-guide">
<div class="col-xs-12">
<a class="anchor vspace" id="Color"></a>
<h2>Color</h2>
<p>Color is what give a design it's first sense of style. What color is chosen speaks to where it can be used and what it's implied meaning is.</p>
<p>With the color choice of such a <a href="http://veli.ee/colorpedia/?c=173F3A">vibrant blue</a> it is meant to speak to all of the areas I've focused on in my career. With in terms of print, it is a very important color and in this case
is closely related to <strong>Reflex Blue</strong>. With repsects to screen design it is one of the most feared screens a user can come across on a Windows machine. It is also the most widely supported colors for accessability and
is usally a placeholder color. It is most commonly seen as in blue prints for architecture. These are a few reasons anyone could associate with blue in the common era, it was seen as a sign of nobility in medevil times.</p>
</div>
</div>
<div class="row style-guide color-swatch">
<div class="col-xs-12">
<a class="anchor" id="Primary-Colors"></a>
<h5 id="color-brand" style="text-align:center;">Primary Colors</h3>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1a3acc">
<div class="brand-colors-lrg" style="background-color:#1a3acc;color:white;">
<p class="color-name" style="color:#fff;">Reflux Blu &<br/>white</p><br>
<div class="swatch-footer" style="color:#fff;">#1a3acc<br>#ffffff</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#e0e9fe">
<div class="brand-colors-lrg" style="background-color:#e0e9fe;color:#1a3acc;">
<p class="color-name">Cuul Blu &<br/>Reflux Blu</p><br>
<div class="swatch-footer">#e0e9fe<br>#1a3acc</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#e0e9fe">
<div class="brand-colors-lrg" style="background-color:#e4dfd9;color:#1a3acc;">
<p class="color-name">Wurm Grey &<br/>Reflux Blu</p><br>
<div class="swatch-footer" style="color:#1a3acc;">#e4dfd9<br>#1a3acc</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#142a2d">
<div class="brand-colors-lrg" style="background-color:#a3a3a3;color:#142a2d;">
<p class="color-name">Cuul Grey &<br/>drk-gable</p><br>
<div class="swatch-footer">#a3a3a3<br>#142a2d</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#142a2d">
<div class="brand-colors-lrg" style="background-color:#142a2d;color:#e4dfd9;">
<p class="color-name">drk-Gable &<br/>off-white</p><br>
<div class="swatch-footer">#142a2d<br>#e4dfd9</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1a3acc">
<div class="brand-colors-sml" style="background-color:#1a3acc;color:#142a2d;">
<div class="swatch-footer">reflux blu &<br/>drk-gable</div>
</div>
</a>
<span class="example-block-wrong">wrong</span>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1a3acc">
<div class="brand-colors-sml" style="background-color:#e0e9fe;color:#142a2d;">
<div class="swatch-footer" style="color:#CCAB1A;">cuul blu&<br>golden grass</div>
</div>
</a>
<span class="example-block-wrong">wrong</span>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1a3acc">
<div class="brand-colors-sml" style="background-color:#e4dfd9;color:#AB1ACC;">
<div class="swatch-footer">wurm Grey &<br>purple heart</div>
</div>
</a>
<span class="example-block-wrong">wrong</span>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1a3acc">
<div class="brand-colors-sml" style="background-color:#a3a3a3;color:#1ACCAB;">
<span class="swatch-footer">CUUL GREY &<br>JAVA</span>
</div>
</a>
<span class="example-block-wrong">wrong</span>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1a3acc">
<div class="brand-colors-sml" style="background-color:#142a2d;color:#1ACCAB;">
<span class="swatch-footer">DRK-Gable &<br> JAVA</span>
</div>
</a>
<span class="example-block-alt">alt</span>
</div>
</div>
<!-- PRIMARY COLORS -->
<!-- SECONDARY COLORS -->
<div class="row style-guide color-swatch">
<div class="col-xs-12">
<a class="anchor" id="Secondary-Colors"></a>
<h5 id="color-brand" style="text-align:center;">Secondary Colors</h3>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#CCAB1A">
<div class="brand-colors" style="background-color:#CCAB1A;color:#142a2d;">
<p class="color-name">Golden Grass &<br/>drk-gable</p><br>
<div class="swatch-footer">#CCAB1A<br>#142a2d</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#AB1ACC">
<div class="brand-colors" style="background-color:#AB1ACC;color:#e0e9fe;">
<p class="color-name">Purple Heart &<br/>Cuul Blu</p><br>
<div class="swatch-footer">#AB1ACC<br>#e0e9fe</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#AB1ACC">
<div class="brand-colors" style="background-color:#600000;color:#e0e9fe;">
<p class="color-name">Blud Red &<br/>Cuul Blu</p><br>
<div class="swatch-footer">#600000<br>#e0e9fe</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1ACCAB <br />COLOR: WHITE">
<div class="brand-colors" style="background-color:#1ACCAB;color:#1a3acc;">
<p class="color-name">Java &<br/>Reflux Blu</p><br/>
<div class="swatch-footer">#1ACCAB<br>#1a3acc</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors" style="background-color:#008080;color:#e0e9fe;">
<p class="color-name">Legacy &<br>Cuul Blu</p><br/>
<div class="swatch-footer">#008080<br>#e0e9fe</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#CCAB1A;color:#e0e9fe;">
<div class="swatch-footer">golden grass<br>cuul blu</div>
<span class="example-block-alt">alt</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#AB1ACC;color:#1a3acc;">
<div class="swatch-footer">purple heart<br>reflux blu</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#600000;color:#AB1ACC;">
<div class="swatch-footer">blud red<br>purple heart</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#1ACCAB;color:#AB1ACC;">
<div class="swatch-footer">java<br>purple heart</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#008080;color:#600000;">
<div class="swatch-footer">legacy<br>blud red</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
</div>
<!-- SECONDARY COLORS -->
<!-- ALTERNATE COLORS -->
<div class="row style-guide color-swatch">
<div class="col-xs-12">
<a class="anchor" id="Alternate-Colors"></a>
<h5 id="color-brand" style="text-align:center;">Alternate Colors</h3>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#CCAB1A">
<div class="brand-colors-med" style="background-color:#142a2d;color:#1a3acc;">
<p style="background:black;padding:12px;" class="color-name">DRK-GABLE &<br> REFLUX BLU</p>
<div class="swatch-footer">#CCAB1A<br>#142a2d</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#AB1ACC">
<div class="brand-colors-med" style="background-color:#AB1ACC;color:#e0e9fe;">
<p style="background:black;padding:12px;" class="color-name">Purple Heart &<br>Cuul Blu</p>
<div class="swatch-footer">#AB1ACC<br>#e0e9fe</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#AB1ACC">
<div class="brand-colors-med" style="background-color:#600000;color:#e0e9fe;">
<p style="background:black;padding:12px;" class="color-name">Blud Red &<br>Cuul Blu</p>
<div class="swatch-footer">#600000<br>#e0e9fe</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1ACCAB <br />COLOR: WHITE">
<div class="brand-colors-med" style="background-color:#1ACCAB;color:#1a3acc;">
<p style="background:black;padding:12px;" class="color-name">Java &<br/>Reflux Blu</p><br>
<div class="swatch-footer">#1ACCAB<br>#1a3acc</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-med" style="background-color:#008080;color:#e0e9fe;">
<p style="background:black;padding:12px;" class="color-name">Legacy &<br/>Cuul Blu</p><br>
<div class="swatch-footer">#008080<br>#e0e9fe</div>
</div>
</a>
</div>
<!-- next row -->
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#142a2d;color:#AB1ACC;">
<div style="background:black;padding:12px;" class="swatch-footer">purple heart<br>drk-gable</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#AB1ACC;color:#1a3acc;">
<div style="background:black;padding:12px;" class="swatch-footer">purple heart<br>cuul blu</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#600000;color:#1ACCAB;">
<div style="background:black;padding:12px;" class="swatch-footer">blud red<br>java</div>
<span class="example-block-alt">alt</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#1ACCAB;color:#AB1ACC;">
<div style="background:black;padding:12px;" class="swatch-footer">java<br>purple heart</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#008080;color:#600000;">
<div style="background:black;padding:12px;" class="swatch-footer">legacy<br>blud red</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
</div>
<!--/ ALTERNATE COLORS -->
<!-- ALTERNATE COLORS 2-->
<div class="row style-guide color-swatch">
<div class="col-xs-12">
<a class="anchor" id="Secondary-Colors"></a>
<h5 id="color-brand" style="text-align:center;">Tertiary Colors</h3>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="DRK-GABLE &<br/>wheat">
<div class="brand-colors-med" style="background-color:#142a2d;color:burlywood;">
<p style="background:black;padding:12px;" class="color-name">DRK-GABLE &<br/>wheat</p><br>
<div class="swatch-footer">#CCAB1A<br>#142a2d</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="Golden &<br/>Cuul Blu">
<div class="brand-colors-med" style="background-color:#ccab1a;color:#e0e9fe;">
<p style="background:black;padding:12px;" class="color-name">Golden &<br/>Cuul Blu</p><br>
<div class="swatch-footer">#AB1ACC<br>#e0e9fe</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="Blud Red &<br/>Cuul Blu">
<div class="brand-colors-med" style="background-color:#600000;color:#e0e9fe;">
<p style="background:black;padding:12px;" class="color-name">Blud Red &<br/>Cuul Blu</p><br>
<div class="swatch-footer">#600000<br>#e0e9fe</div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="HEX:#1ACCAB <br />COLOR: WHITE">
<div class="brand-colors-med" style="background-color:#1ACCAB;color:#1a3acc;">
<p style="background:black;padding:12px;" class="color-name">Java &<br/>Reflux Blu</p><br>
<div class="swatch-footer">#1ACCAB<br>#1a3acc<br></div>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-med" style="background-color:#008080;color:#e0e9fe;">
<p style="background:black;padding:12px;" class="color-name">Legacy &<br/>Cuul Blu</p><br>
<div class="swatch-footer">#008080<br>#e0e9fe</div>
</div>
</a>
</div>
<!-- next row -->
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#142a2d;color:#AB1ACC;">
<div style="background:black;padding:12px;" class="swatch-footer">purple heart<br>drk-gable</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#AB1ACC;color:#1a3acc;">
<div style="background:black;padding:12px;" class="swatch-footer">purple heart<br>cuul blu</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#600000;color:#deb887;">
<div style="background:black;padding:12px;" class="swatch-footer">blud red<br>wheat</div>
<span class="example-block-alt">alt</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#1ACCAB;color:#AB1ACC;">
<div style="background:black;padding:12px;" class="swatch-footer">java<br>purple heart</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
<div class="col-sm-5 col-xs-12">
<a href="#" data-toggle="tooltip" title="#008080 <br />COLOR: #e0e9fe">
<div class="brand-colors-sml" style="background-color:#008080;color:#600000;">
<div style="background:black;padding:12px;" class="swatch-footer">legacy<br>blud red</div>
<span class="example-block-wrong">wrong</span>
</div>
</a>
</div>
</div>
<!-- ALTERNATE COLORS 2-->
<hr>
<div class="row style-guide">
<div class="col-xs-12">
<a class="anchor vspace" id="ColorUsage"></a>
<h4>Usage</h4>
<pre style="max-height: 250px;"><code class="language-sass">--brand-blue: #1a3acc;
$dark-blue: #001c9b;
$very-dark-blue: #000e4e;
$cool-blue: #e0e9fe;
$magenta: #ab1acc;
$fuchsia: #84017e;
$blood-red: #600000;
$dim-red: #ee0202;
$legacy: #008080;
$java: #1ACCAB;
$pale-blue: #a6aaf4;
$robin: #A5C4DB;
$golden: #ccab1a;
$burlywood: #DEB887;
$safety-green: #BBFF32;
$bright-green: #14E158;
$mint-green: #2e8c5f;
$pale-olive: #648476;
$bright-orange: rgba(255, 111, 63, 0.5);
$orange: #ff6f3f;
$dark-olive: #1a1e1c;
$black: #0a0c0e;
$white: #ffffff;
$base-bright: #f0f4f7;
$bright-grey: #f2f2f2;
$light-grey: #cfcfcf;
$warm-grey: #818181;
$metal: #5a6771;
$ever-green: #142a2d;
$deep-green: #0A202E;
$warm-black: #2D2828;
$deep-root: #004161;
$euphoria: #00050f;</code></pre>
</div>
</div>
<hr>
<div class="row">
<div class="col-xs-12 start">
<img class="img-responsive" src="https://joeldom.github.io/asset/images/uberpixel.png" style="margin: -1px 0 0 0">
</div>
</div>
<div class="row style-guide">
<div class="col-xs-12">
<a class="anchor" id="Typography"></a>
<h2>Typography</h2>
<p>Inspired by technical manuals and NASA brand docs the layouts a intended to be slightly off by some variable metric on the sides to favor left or right handedness. The headings size linearly based on a predefined number while the body
copy has <code>1.5em</code></p>
<p>This should swap conditionally between classes depending on which is on or not on and check or remove all then just re-add them. This would probably be the easiest way instead of having a dozen or so conditions to check for. The <a href="https://gist.github.com/egeorjon/6755681">Gist with add_remove_class with Javascript</a></p>
<p>This shouldn't be as difficult as I am making this out to be. Metalicas Unforgiven is on right now.</p>
</div>
</div>
<br>
<div class="row">
<div id="font-sample" class="frame pb-5">
<div class="swatch-holder">
<h5 style="text-align: center;">Choose a color</h5>
<div class="swatch-center">
<button id="refluxblu" class="theme-choice refluxblu"><span class="theme-color">A</span></button>
<button id="cuulblu" class="theme-choice cuulblu"><span class="theme-color">A</span></button>
<button id="wurmgrey" class="theme-choice wurmgrey"><span class="theme-color">A</span></button>
<button id="drkgable" class="theme-choice drkgable"><span class="theme-color">A</span></button>
</div>
</div>
<div id="font-container" class="container-fluid refluxblu-white" role="tabpanel" style="padding: 0 0 2em 0;">
<a class="anchor" id="typography-roboto"></a>
<h1 style="font-family:'Roboto' !important;text-align:center;">Roboto</h1>
<table class="table" style="font-family:'Roboto' !important;color:white;" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td class="sample-col-1">
<table style="padding:0;width:100%;" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="font-size:14px;">
Glyph
</td>
</tr>
<tr>
<td style="font-size:100px;text-align:center;">Rr</td>
</tr>
</table>
</td>
<td class="sample-col-2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">Characters <small>24px</small></td>
</tr>
<tr>
<td style="font-size:24px;letter-spacing:4px;">
ABCĆČDĐEFGHIJKLMNOPQRSŠTUVWXYZŽabcčćdđefghijklmnopqrsštuvwxyzžАБВГҐДЂЕЁЄЖЗЅИІЇЙЈКЛЉМНЊОПРСТЋУЎФХЦЧЏШЩЪЫЬЭЮЯабвгґдђеёєжзѕиіїйјклљмнњопрстћуўфхцчџшщъыьэюяΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψωάΆέΈέΉίϊΐΊόΌύΰϋΎΫΏĂÂÊÔƠƯăâêôơư1234567890‘?’“!”(%)[#]{@}/&
<-+÷×=>®©$€£¥¢:;,.*
</td>
</tr>
</table>
</td>
<td class="sample-col-3">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">
About
</td>
</tr>
<tr>
<td style="font-size:12px">
Roboto has a dual nature. It has a mechanical skeleton and the forms are largely geometric. At the same time, the font features friendly and open curves. While some grotesks distort their letterforms to force a rigid rhythm, Roboto doesn’t compromise,
allowing letters to be settled into their natural width. This makes for a more natural reading rhythm more commonly found in humanist and serif types.
<br><br> This is the regular family, which can be used alongside the <a href="https://fonts.google.com/specimen/Roboto+Condensed">Roboto Condensed</a> family and the <a href="https://fonts.google.com/specimen/Roboto+Slab">Roboto Slab</a> family.
<br><br> To contribute, see <a href="https://github.com/google/roboto/">github.com/google/roboto</a>
</td>
</tr>
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">
<br>Rating
</td>
</tr>
<tr>
<td style="font-size:18px">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
<!-- /FONT SAMPLE -->
<hr />
<a class="anchor" id="typography-roboto-mono"></a>
<h1 style="font-family:'Roboto Mono' !important;text-align:center;">Roboto Mono</h1>
<table class="table" style="font-family:'Roboto Mono' !important;color:white;" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td class="sample-col-1">
<table style="padding:0;width:100%;" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="font-size:14px;">
Glyph
</td>
</tr>
<tr>
<td style="font-size:100px;text-align:center;">Rr</td>
</tr>
</table>
</td>
<td class="sample-col-2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">Characters <small>24px</small></td>
</tr>
<tr>
<td style="font-size:24px;letter-spacing:4px;">
ABCĆČDĐEFGHIJKLMNOPQRSŠTUVWXYZŽabcčćdđefghijklmnopqrsštuvwxyzžАБВГҐДЂЕЁЄЖЗЅИІЇЙЈКЛЉМНЊОПРСТЋУЎФХЦЧЏШЩЪЫЬЭЮЯабвгґдђеёєжзѕиіїйјклљмнњопрстћуўфхцчџшщъыьэюяΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψωάΆέΈέΉίϊΐΊόΌύΰϋΎΫΏĂÂÊÔƠƯăâêôơư1234567890‘?’“!”(%)[#]{@}/&
<-+÷×=>®©$€£¥¢:;,.*
</td>
</tr>
</table>
</td>
<td class="sample-col-3">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">
About
</td>
</tr>
<tr>
<td style="font-size:12px">
Roboto Mono is a monospaced addition to the <a href="https://fonts.google.com/specimen/Roboto">Roboto</a> type family. Like the other members of the Roboto family, the fonts are optimized for readability
on screens across a wide variety of devices and reading environments. While the monospaced version is related to its variable width cousin, it doesn’t hesitate to change forms to better fit the constraints
of a monospaced environment. For example, narrow glyphs like ‘I’, ‘l’ and ‘i’ have added serifs for more even texture while wider glyphs are adjusted for weight. Curved caps like ‘C’ and ‘O’ take on the
straighter sides from Roboto Condensed.
<br><br> Special consideration is given to glyphs important for reading and writing software source code. Letters with similar shapes are easy to tell apart. Digit ‘1’, lowercase ‘l’ and capital ‘I’ are
easily differentiated as are zero and the letter ‘O’. Punctuation important for code has also been considered. For example, the curly braces ‘{ }’ have exaggerated points to clearly differentiate them
from parenthesis ‘( )’ and braces ‘[ ]’. Periods and commas are also exaggerated to identify them more quickly. The scale and weight of symbols commonly used as operators have also been optimized.
<br><br> To contribute, see <a href="https://github.com/google/roboto/">github.com/google/roboto</a>
</td>
</tr>
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">
<br>Usage <i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</td>
</tr>
<tr>
<!-- <td style="font-size:18px">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</td> -->
<td>
<span class="badge badge-default">Base</span>
<span class="badge badge-primary">New</span>
<span class="badge badge-secondary">Archive</span>
<span class="badge badge-success">Success</span>
<span class="badge badge-info">Info</span>
<span class="badge badge-warning">Warning</span>
<span class="badge badge-danger">Danger</span>
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
<!-- /FONT SAMPLE -->
<hr />
<!-- /FONT SAMPLE -->
<a class="anchor" id="typography-NotoSans"></a>
<h1 style="font-family:'Noto Sans' !important;text-align:center;">Noto Sans</h1>
<table class="table font-sample-table" style="font-family:'Noto Sans' !important;color:white;word-wrap: anywhere;" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td class="sample-col-1">
<table style="padding:0;" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="font-size:14px;">
Glyph
</td>
</tr>
<tr>
<td style="font-size:100px;text-align:center;white-space:nowrap;">Nn</td>
</tr>
</table>
</td>
<td class="sample-col-2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">Characters <small>24px</small></td>
</tr>
<tr>
<td style="font-size:24px;letter-spacing:4px;">
ABCČĆDĐEFGHIJKLMNOPQRSŠTUVWXYZŽabcčćdđefghijklmnopqrsštuvwxyzžАБВГҐДЂЕЁЄЖЗЅИІЇЙЈКЛЉМНЊОПРСТЋУЎФХЦЧЏШЩЪЫЬЭЮЯабвгґдђеёєжзѕиіїйјклљмнњопрстћуўфхцчџшщъыьэюяΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψωάΆέΈέΉίϊΐΊόΌύΰϋΎΫὰάὲέὴήὶίὸόὺύὼώΏआईऊऋॠऌॡऐऔऎअंअँकखगघङचछजझञटठडढणतथदधनपफबभयरवळशषसहĂÂÊÔƠƯăâêôơư1234567890०१२३४५६७८९‘?’“!”(%)[#]{@}
<-+÷×=>®©$€£¥¢:;,.*₹
</td>
</tr>
</table>
</td>
<td class="sample-col-3">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">
About
</td>
</tr>
<tr>
<td style="font-size:12px">
When text is rendered by a computer, sometimes there will be characters in the text that can not be displayed, because no font that supports them is available to the computer. When this occurs, small boxes are shown to represent the characters. We call
those small boxes “tofu,” and we want to remove tofu from the Web. This is how the Noto font families got their name.
<br><br> Noto helps to make the web more beautiful across platforms for all languages. Currently, Noto covers over 30 scripts, and will cover all of Unicode in the future. This is the Sans Latin, Greek and
Cyrillic family. It has Regular, Bold, Italic and Bold Italic styles and is hinted. It is derived from Droid, and like Droid it has a serif sister family, <a href="//www.google.com/fonts/specimen/Noto+Serif">Noto Serif</a>.
<br><br> Noto fonts for many other languages are available as web fonts from the <a href="//www.google.com/fonts/earlyaccess">Google Web Fonts Early Access</a> page.
<br><br> Noto fonts are intended to be visually harmonious across multiple languages, with compatible heights and stroke thicknesses. For the currently released Noto fonts see <a href="https://code.google.com/p/noto/">code.google.com/p/noto/</a>
</td>
</tr>
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">
<br>Rating
</td>
</tr>
<tr>
<td style="font-size:18px">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star-half-alt"></i>
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
<hr />
<!-- /FONT SAMPLE -->
<!-- FONT SAMPLE -->
<a class="anchor" id="typography-Helvetica"></a>
<h1 style="font-family:Helvetica !important;text-align:center;">Helvetica</h1>
<table class="table font-sample-table" style="font-family:Helvetica !important;color:white;" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td class="sample-col-1">
<table style="padding:0;" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="font-size:14px;">
Glyph
</td>
</tr>
<tr>
<td style="font-size:100px;text-align:center;white-space:nowrap;">Hh</td>
</tr>
</table>
</td>
<td class="sample-col-2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">Characters <small>24px</small></td>
</tr>
<tr>
<td style="font-size:24px;letter-spacing:4px;">
ABCĆČDĐEFGHIJKLMNOPQRSŠTUVWXYZŽabcčćdđefghijklmnopqrsštuvwxyzžАБВГҐДЂЕЁЄЖЗЅИІЇЙЈКЛЉМНЊОПРСТЋУЎФХЦЧЏШЩЪЫЬЭЮЯабвгґдђеёєжзѕиіїйјклљмнњопрстћуўфхцчџшщъыьэюяΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψωάΆέΈέΉίϊΐΊόΌύΰϋΎΫΏĂÂÊÔƠƯăâêôơư1234567890‘?’“!”(%)[#]{@}/&
<-+÷×=>®©$€£¥¢:;,.*
</td>
</tr>
</table>
</td>
<td class="sample-col-3">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height:2em;padding-bottom:1.5em;">
About
</td>
</tr>
<tr>
<td style="font-size:12px">
Roboto has a dual nature. It has a mechanical skeleton and the forms are largely geometric. At the same time, the font features friendly and open curves. While some grotesks distort their letterforms to force a rigid rhythm, Roboto doesn’t compromise,