-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathindex.html
More file actions
1341 lines (1014 loc) · 53.4 KB
/
index.html
File metadata and controls
1341 lines (1014 loc) · 53.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>TACHYONS - Pages | Double</title>
<meta name="description" content="Tachyons Component">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="author" content="@mrmrs">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/tachyons/css/tachyons.min.css">
<style>
.blue { color: #0074D9; }
.bg-blue { background-color: #0074D9; }
.carbon-poweredby { width: 100%; font-size: 12px; float: left; }
.carbon-wrap { float: left; width: 100%; box-sizing: border-box; }
.carbon-img { float: left; width: 50%; box-sizing: border-box; }
.carbon-text { float: left; width: 50%; padding-left: 16px; box-sizing: border-box; font-size: 12px; }
#carbonads a:link { text-decoration: none!important; color: #222!important; }
</style>
<link rel="alternate" type="application/rss+xml" title="RSS Feed for Tachyons Recent Components" href="/components/rss.xml" />
</head>
<body class="w-100 sans-serif bg-white">
<main>
<div data-name="component">
<main class="w-100 cf helvetica dark-gray bg-white pa3 pa4-m pa5-l mw9 center">
<div class="fl w-50 pr2 pr3-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/v/022.jpg) center;"></div>
</div>
<div class="fl w-50 w-25-l pl2 pr2-m ph2-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/v/024.jpg) center;"> </div>
</div>
<div class="fl w-50 w-50 w-25-l pr2 pr0-l pl3-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/050.jpg) left;"> </div>
</div>
<div class="fl w-50 w-50 w-25-l pl2 pl0-l pr2-m pr4-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/049.jpg) center;"> </div>
</div>
<div class="fl w-100 w-50-l pr2-l pl2-ns mb4 mb0-l mb4 outline">
<div class="pa4">
<h1 class="f4 f2-l fw7 mt0 pv3-l bb-l bb--black">#004</h1>
<p class="lh-copy mt2 mt3-m mt5-l f6">
<span class="db-ns f6 fw7 lh-solid mb3 mb0-m mb4-l">Mies, my great mentor said:</span>
<span class="fw9 f6 f1-l db lh-title mb3 mb4-l">“God is in the details.”</span>
<span class="db-l measure-wide">
That is the essence of syntax: the discipline
that controls the proper use of grammar in the construction of phrases and the articulation of a language, Design. The syntax of design is provided by many components in the nature of the project.
</span>
</p>
</div>
</div>
<div class="cf">
<div class="fl w-100 w-25-l pl3-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/051.jpg) center;"> </div>
</div>
<div class="fl w-100 w-25-l pr3-l">
<p class="lh-copy measure f6 pt3 pt0-l mt0 mb3 mb4-l center">
<span class="fw6">For us Graphic Design is “organization of information.”</span> There are other
types of graphic design more concerned with illustration or of a
narrative nature. Nothing could be more useful to reach our intention
than the Grid. The grid represents the basic structure of our graphic
design, it helps to organize the content, it provides consistency, it
gives an orderly look and it projects a level of intellectual elegance
that we like to express. There are infinite kinds of grids, but just
one - the most appropriate - for any problem. Therefore, it becomes
important to know which kind of grid is the most appropriate. The basic
understanding is that the smaller the module of the grid the least
helpful it could be. We could say that an empty page is a page with an
in nitesimal small grid. Therefore, it is equivalent to not being
there. Conversely a page with a coarse grid is a very restricting grid
offering too few alternatives. The secret is to find the proper kind of
grid for the job at hand. Sometimes, in designing a grid we want to
have the outside margins small enough to provide a certain tension
between the edges of the page and the content. After that we divide the
page in a certain number of columns according to the content, three,
two, four, ve, six, etc. Columns provide only one kind of consistency,
but we also need to have an horizontal frame of reference to assure
certain levels of continuity throughout the publication. Therefore, we
will divide the page from top to bottom in a certain number of Modules,
four, six, eight, or more, according to size and need. Once we have
structured the page, we will begin to structure the information and
place it in the grid in such a way that the clarity of the message will
be enhanced by the placement of the text on the grid. There are in nite
ways of doing this and that is why the grid is a useful tool, rather
than a constricting device.
</p>
</div>
<div class="fl w-100 w-75-l pv0 mv0">
<div class="fl w-100 mb2 mb4-l">
<div class="cover pv5 pv6-l" style="background:black url(http://mrmrs.github.io/photos/u/001.jpg) center;"> </div>
</div>
<div class="fl w-25 mb2 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/u/002.jpg) center;"> </div>
</div>
<div class="fl w-75 pl2 pl4-l mb2 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/u/003.jpg) center;"> </div>
</div>
<div class="fl w-100 mb2 mb4-l">
<div class="cover pv5 pv6-ns" style="background:black url(http://mrmrs.github.io/photos/u/004.jpg) center;"> </div>
</div>
</div>
</div>
</main>
</div>
<section data-name="component-info" class="pa3 pa5-ns bt b--black-10 black-70 bg-white">
<h1 class="f4 f3-ns mt4">Double</h1>
<div class="cf">
<div class="fl w-100 w-75-ns pr0 pr2-ns">
<h2 class="f5">HTML</h2>
<p class="f5 black-70"></p>
<pre class="pa3 ba br2 b--black-10 h5 bg-white-20" id="html">
<main class="w-100 cf helvetica dark-gray bg-white pa3 pa4-m pa5-l mw9 center">
<div class="fl w-50 pr2 pr3-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/v/022.jpg) center;"></div>
</div>
<div class="fl w-50 w-25-l pl2 pr2-m ph2-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/v/024.jpg) center;"> </div>
</div>
<div class="fl w-50 w-50 w-25-l pr2 pr0-l pl3-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/050.jpg) left;"> </div>
</div>
<div class="fl w-50 w-50 w-25-l pl2 pl0-l pr2-m pr4-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/049.jpg) center;"> </div>
</div>
<div class="fl w-100 w-50-l pr2-l pl2-ns mb4 mb0-l mb4 outline">
<div class="pa4">
<h1 class="f4 f2-l fw7 mt0 pv3-l bb-l bb--black">#004</h1>
<p class="lh-copy mt2 mt3-m mt5-l f6">
<span class="db-ns f6 fw7 lh-solid mb3 mb0-m mb4-l">Mies, my great mentor said:</span>
<span class="fw9 f6 f1-l db lh-title mb3 mb4-l">“God is in the details.”</span>
<span class="db-l measure-wide">
That is the essence of syntax: the discipline
that controls the proper use of grammar in the construction of phrases and the articulation of a language, Design. The syntax of design is provided by many components in the nature of the project.
</span>
</p>
</div>
</div>
<div class="cf">
<div class="fl w-100 w-25-l pl3-l mb3 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/051.jpg) center;"> </div>
</div>
<div class="fl w-100 w-25-l pr3-l">
<p class="lh-copy measure f6 pt3 pt0-l mt0 mb3 mb4-l center">
<span class="fw6">For us Graphic Design is “organization of information.”</span> There are other
types of graphic design more concerned with illustration or of a
narrative nature. Nothing could be more useful to reach our intention
than the Grid. The grid represents the basic structure of our graphic
design, it helps to organize the content, it provides consistency, it
gives an orderly look and it projects a level of intellectual elegance
that we like to express. There are in nite kinds of grids, but just
one - the most appropriate - for any problem. Therefore, it becomes
important to know which kind of grid is the most appropriate. The basic
understanding is that the smaller the module of the grid the least
helpful it could be. We could say that an empty page is a page with an
in nitesimal small grid. Therefore, it is equivalent to not being
there. Conversely a page with a coarse grid is a very restricting grid
offering too few alternatives. The secret is to find the proper kind of
grid for the job at hand. Sometimes, in designing a grid we want to
have the outside margins small enough to provide a certain tension
between the edges of the page and the content. After that we divide the
page in a certain number of columns according to the content, three,
two, four, ve, six, etc. Columns provide only one kind of consistency,
but we also need to have an horizontal frame of reference to assure
certain levels of continuity throughout the publication. Therefore, we
will divide the page from top to bottom in a certain number of Modules,
four, six, eight, or more, according to size and need. Once we have
structured the page, we will begin to structure the information and
place it in the grid in such a way that the clarity of the message will
be enhanced by the placement of the text on the grid. There are in nite
ways of doing this and that is why the grid is a useful tool, rather
than a constricting device.
</p>
</div>
<div class="fl w-100 w-75-l pv0 mv0">
<div class="fl w-100 mb2 mb4-l">
<div class="cover pv5 pv6-l" style="background:black url(http://mrmrs.github.io/photos/u/001.jpg) center;"> </div>
</div>
<div class="fl w-25 mb2 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/u/002.jpg) center;"> </div>
</div>
<div class="fl w-75 pl2 pl4-l mb2 mb4-l">
<div class="cover pv5 pv6-m pv7-l" style="background:black url(http://mrmrs.github.io/photos/u/003.jpg) center;"> </div>
</div>
<div class="fl w-100 mb2 mb4-l">
<div class="cover pv5 pv6-ns" style="background:black url(http://mrmrs.github.io/photos/u/004.jpg) center;"> </div>
</div>
</div>
</div>
</main>
</pre>
</div>
<div class="fl w-100 w-25-ns pl0 pl2-ns">
<h2 class="f5">css</h2>
<pre class="pa3 ba br2 b--black-10 h5" id="css">.cover {
background-size: cover !important;
}
.outline {
outline: 1px solid;
}
.cf:before, .cf:after {
content: " ";
display: table;
}
.cf:after {
clear: both;
}
.cf {
*zoom: 1;
}
.db {
display: block;
}
.fl {
float: left;
_display: inline;
}
.helvetica {
font-family: 'helvetica neue', helvetica, sans-serif;
}
.fw6 {
font-weight: 600;
}
.fw7 {
font-weight: 700;
}
.fw9 {
font-weight: 900;
}
.lh-solid {
line-height: 1;
}
.lh-title {
line-height: 1.25;
}
.lh-copy {
line-height: 1.5;
}
.mw9 {
max-width: 96rem;
}
.w-25 {
width: 25%;
}
.w-50 {
width: 50%;
}
.w-75 {
width: 75%;
}
.w-100 {
width: 100%;
}
.dark-gray {
color: #4d4d4f;
}
.bg-white {
background-color: #fff;
}
.pa3 {
padding: 1rem;
}
.pa4 {
padding: 2rem;
}
.pl2 {
padding-left: .5rem;
}
.pr2 {
padding-right: .5rem;
}
.pt3 {
padding-top: 1rem;
}
.pv0 {
padding-top: 0;
padding-bottom: 0;
}
.pv5 {
padding-top: 4rem;
padding-bottom: 4rem;
}
.mb2 {
margin-bottom: .5rem;
}
.mb3 {
margin-bottom: 1rem;
}
.mb4 {
margin-bottom: 2rem;
}
.mt0 {
margin-top: 0;
}
.mt2 {
margin-top: .5rem;
}
.mv0 {
margin-top: 0;
margin-bottom: 0;
}
.f4 {
font-size: 1.25rem;
}
.f6 {
font-size: .875rem;
}
.measure {
max-width: 30em;
}
.measure-wide {
max-width: 34em;
}
.center {
margin-right: auto;
margin-left: auto;
}
@media screen and (min-width: 30em) {
.db-ns {
display: block;
}
.pl2-ns {
padding-left: .5rem;
}
.pv6-ns {
padding-top: 8rem;
padding-bottom: 8rem;
}
}
@media screen and (min-width: 30em) and (max-width: 60em) {
.pa4-m {
padding: 2rem;
}
.pr2-m {
padding-right: .5rem;
}
.pv6-m {
padding-top: 8rem;
padding-bottom: 8rem;
}
.mb0-m {
margin-bottom: 0;
}
.mt3-m {
margin-top: 1rem;
}
}
@media screen and (min-width: 60em) {
.bb-l {
border-bottom-style: solid;
border-bottom-width: 1px;
}
.db-l {
display: block;
}
.w-25-l {
width: 25%;
}
.w-50-l {
width: 50%;
}
.w-75-l {
width: 75%;
}
.pa5-l {
padding: 4rem;
}
.pl0-l {
padding-left: 0;
}
.pl3-l {
padding-left: 1rem;
}
.pl4-l {
padding-left: 2rem;
}
.pr0-l {
padding-right: 0;
}
.pr2-l {
padding-right: .5rem;
}
.pr3-l {
padding-right: 1rem;
}
.pr4-l {
padding-right: 2rem;
}
.pt0-l {
padding-top: 0;
}
.pv3-l {
padding-top: 1rem;
padding-bottom: 1rem;
}
.pv6-l {
padding-top: 8rem;
padding-bottom: 8rem;
}
.pv7-l {
padding-top: 16rem;
padding-bottom: 16rem;
}
.ph2-l {
padding-left: .5rem;
padding-right: .5rem;
}
.mb0-l {
margin-bottom: 0;
}
.mb4-l {
margin-bottom: 2rem;
}
.mt5-l {
margin-top: 4rem;
}
.f1-l {
font-size: 3rem;
}
.f2-l {
font-size: 2.25rem;
}
}
</pre>
</div>
</div>
<div class="cf">
<div class="fl w-100">
<h2 class="f5 mb3 mt4">Css stats for this component</h2>
<dl class="dib mr4 mt0">
<dt class="db f6">Gzipped Size</dt>
<dd class="ml0 b f3 f2-ns">810<small class="f6">B</small>
</dd>
</dl>
<dl class="dib mr4 mt0">
<dt class="db f6">Selectors</dt>
<dd class="ml0 b f3 f2-ns">71</dd>
</dl>
<dl class="dib mt0">
<dt class="db f6">Declarations</dt>
<dd class="ml0 b f3 f2-ns">83</dd>
</dl>
</div>
<div class="fl w-100">
<h2 class="f5 mt4">Modules referenced</h2>
<ul class="list pl0 cf lh-copy mw7">
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-background-size">tachyons-background-size</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-outlines">tachyons-outlines</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-clears">tachyons-clears</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-display">tachyons-display</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-floats">tachyons-floats</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-font-family">tachyons-font-family</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-font-weight">tachyons-font-weight</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-line-height">tachyons-line-height</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-max-widths">tachyons-max-widths</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-widths">tachyons-widths</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-skins">tachyons-skins</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-spacing">tachyons-spacing</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-type-scale">tachyons-type-scale</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-typography">tachyons-typography</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-utilities">tachyons-utilities</a></li>
<li class="fl w-100 w-50-m w-33-ns"><a class="f5 link dim blue fw6" href="https://github.com/tachyons-css/tachyons-borders">tachyons-borders</a></li>
</ul>
</div>
</div>
<h4 class="mt5">Install via npm <small class="fw2 f6 db mt1">Only installs the needed tachyons-modules for this component</small></h4>
<code class="f6">npm i --save tachyons-background-size tachyons-outlines tachyons-clears tachyons-display tachyons-floats tachyons-font-family tachyons-font-weight tachyons-line-height tachyons-max-widths tachyons-widths tachyons-skins tachyons-spacing tachyons-type-scale tachyons-typography tachyons-utilities tachyons-borders</code>
<section class="bt b--black-10 mt5 pv4">
<h1 class="f6 b ttu">Other Components</h1>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Article Lists</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/article-lists/title-preview-author-media-flipped/index.html">Title Preview Author Media Flipped</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/article-lists/title-preview-author-media/index.html">Title Preview Author Media</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Articles</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/feature/index.html">Feature</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/full-bleed-background/index.html">Full Bleed Background</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/headline-title-text/index.html">Headline Title Text</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/large-title-text/index.html">Large Title Text</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/left-title-top-border/index.html">Left Title Top Border</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/left-title/index.html">Left Title</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/photo-essay/index.html">Photo Essay</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/single-column-large-title/index.html">Single Column Large Title</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/title-highlight-header-cover/index.html">Title Highlight Header Cover</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/title-text-image/index.html">Title Text Image</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/articles/title-text/index.html">Title Text</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Avatars</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/avatars/circle-border/index.html">Circle Border</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/avatars/circle/index.html">Circle</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/avatars/double-ring/index.html">Double Ring</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/avatars/rounded-large/index.html">Rounded Large</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/avatars/rounded-medium/index.html">Rounded Medium</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/avatars/rounded-small/index.html">Rounded Small</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/avatars/square/index.html">Square</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Banners</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/banners/basic/index.html">Basic</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/banners/info/index.html">Info</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/banners/single-cta/index.html">Single Cta</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Buttons</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/buttons/basic-previous-next/index.html">Basic Previous Next</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/buttons/basic-rounded-extra-small/index.html">Basic Rounded Extra Small</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/buttons/basic-rounded-small/index.html">Basic Rounded Small</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/buttons/basic-rounded/index.html">Basic Rounded</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/buttons/basic/index.html">Basic</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/buttons/centered-icons/index.html">Centered Icons</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/buttons/pill-grow/index.html">Pill Grow</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/buttons/pill/index.html">Pill</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Cards</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/album-centered/index.html">Album Centered</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/album-left/index.html">Album Left</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/basic-text-card/index.html">Basic Text Card</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/news-card/index.html">News Card</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/product-card/index.html">Product Card</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/profile-card-title-subtitle/index.html">Profile Card Title Subtitle</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/profile-card/index.html">Profile Card</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/suggested-profile/index.html">Suggested Profile</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/cards/text-card/index.html">Text Card</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Collections</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/collections/albums/index.html">Albums</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/collections/movies/index.html">Movies</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/collections/posters-dim/index.html">Posters Dim</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/collections/posters/index.html">Posters</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/collections/square-title-subtitle/index.html">Square Title Subtitle</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/collections/vinyl/index.html">Vinyl</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Definition Lists</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/definition-lists/inline/index.html">Inline</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/definition-lists/simple/index.html">Simple</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Error Pages</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/error-pages/404/index.html">404</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Footers</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/centered-icons-hover-glow/index.html">Centered Icons Hover Glow</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/inline-text/index.html">Inline Text</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/simple-large-type/index.html">Simple Large Type</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/small-print/index.html">Small Print</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/social-circles/index.html">Social Circles</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/social-simple-text/index.html">Social Simple Text</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/social-simple/index.html">Social Simple</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/social-text/index.html">Social Text</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/social/index.html">Social</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/footers/studios/index.html">Studios</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Forms</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/forms/checkbox-list/index.html">Checkbox List</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/forms/input-text-label/index.html">Input Text Label</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/forms/newsletter-subscription/index.html">Newsletter Subscription</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/forms/password/index.html">Password</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/forms/sign-in/index.html">Sign In</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/forms/sign-up/index.html">Sign Up</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/forms/textarea-label/index.html">Textarea Label</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Headers</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/headers/circle-avatar-title-subtitle/index.html">Circle Avatar Title Subtitle</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/headers/rounded-avatar-title-subtitle/index.html">Rounded Avatar Title Subtitle</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/headers/startup-hero/index.html">Startup Hero</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Layout</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-16x9/index.html">Aspect Ratio 16x9</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-1x1/index.html">Aspect Ratio 1x1</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-3x4/index.html">Aspect Ratio 3x4</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-4x3/index.html">Aspect Ratio 4x3</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-4x6/index.html">Aspect Ratio 4x6</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-5x7/index.html">Aspect Ratio 5x7</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-5x8/index.html">Aspect Ratio 5x8</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-6x4/index.html">Aspect Ratio 6x4</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-7x5/index.html">Aspect Ratio 7x5</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-8x5/index.html">Aspect Ratio 8x5</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/aspect-ratio-9x16/index.html">Aspect Ratio 9x16</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/centered-container/index.html">Centered Container</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/five-column-collapse-alternate/index.html">Five Column Collapse Alternate</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/five-column-collapse-asymmetrical/index.html">Five Column Collapse Asymmetrical</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/five-column-collapse-mixed/index.html">Five Column Collapse Mixed</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/five-column-collapse-one/index.html">Five Column Collapse One</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/five-column/index.html">Five Column</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/fixed-table-layout-grid-mixed-rows/index.html">Fixed Table Layout Grid Mixed Rows</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/fixed-table-layout-grid/index.html">Fixed Table Layout Grid</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/flag-object-bottom/index.html">Flag Object Bottom</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/flag-object-collapse/index.html">Flag Object Collapse</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/flag-object-top/index.html">Flag Object Top</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/flag-object/index.html">Flag Object</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/four-column-collapse-two-collapse-one/index.html">Four Column Collapse Two Collapse One</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/four-column-collapse-two/index.html">Four Column Collapse Two</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/four-column/index.html">Four Column</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-16x9/index.html">Full Bleed 16x9</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-4x6/index.html">Full Bleed 4x6</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-5x7/index.html">Full Bleed 5x7</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-5x8/index.html">Full Bleed 5x8</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-6x4/index.html">Full Bleed 6x4</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-7x5/index.html">Full Bleed 7x5</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-8x5/index.html">Full Bleed 8x5</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-9x16/index.html">Full Bleed 9x16</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-bleed-square/index.html">Full Bleed Square</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/full-screen-centered-title/index.html">Full Screen Centered Title</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/horizontal-aspect-ratios/index.html">Horizontal Aspect Ratios</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/three-column-collapse-one/index.html">Three Column Collapse One</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/three-column/index.html">Three Column</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/two-column-collapse-one/index.html">Two Column Collapse One</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/layout/two-column/index.html">Two Column</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Links</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/links/animate-background-color/index.html">Animate Background Color</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/links/animate-color/index.html">Animate Color</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/links/dim-no-underline/index.html">Dim No Underline</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/links/underline-on-hover/index.html">Underline On Hover</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Lists</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/block-item-dotted-border/index.html">Block Item Dotted Border</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/border-spaced/index.html">Border Spaced</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/border-tight/index.html">Border Tight</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/contact-phone/index.html">Contact Phone</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/follower-notifications-rounded-square-avatar/index.html">Follower Notifications Rounded Square Avatar</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/follower-notifications/index.html">Follower Notifications</a>