-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathindex.html
919 lines (666 loc) · 38.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>TACHYONS - Layout | Aspect Ratio 4x6</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">
<article class="mw5 mw6-ns center pt4">
<div class="aspect-ratio aspect-ratio--4x6 mb4">
<div class="aspect-ratio--object cover" style="background:url(http://mrmrs.github.io/photos/001.jpg) center;"></div>
</div>
</article>
</div>
<section data-name="component-info" class="pa3 pa5-ns bt b--black-10 black-70 bg-white">
<h1 class="f4 f3-ns mt4">Aspect Ratio 4x6</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">
<article class="mw5 mw6-ns center pt4">
<div class="aspect-ratio aspect-ratio--4x6 mb4">
<div class="aspect-ratio--object cover" style="background:url(http://mrmrs.github.io/photos/001.jpg) center;"></div>
</div>
</article>
</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">.aspect-ratio {
height: 0;
position: relative;
}
.aspect-ratio--4x6 {
padding-bottom: 150%;
}
.aspect-ratio--object {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
}
.cover {
background-size: cover !important;
}
.mw5 {
max-width: 16rem;
}
.pt4 {
padding-top: 2rem;
}
.mb4 {
margin-bottom: 2rem;
}
.center {
margin-right: auto;
margin-left: auto;
}
@media screen and (min-width: 30em) {
.mw6-ns {
max-width: 32rem;
}
}
</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">280<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">9</dd>
</dl>
<dl class="dib mt0">
<dt class="db f6">Declarations</dt>
<dd class="ml0 b f3 f2-ns">18</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-aspect-ratios">tachyons-aspect-ratios</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-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-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-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-utilities">tachyons-utilities</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-aspect-ratios tachyons-background-size tachyons-max-widths tachyons-spacing tachyons-utilities</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>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/hashtags/index.html">Hashtags</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/items-image-title-price/index.html">Items Image Title Price</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/large-links-inline/index.html">Large Links Inline</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/links-animate-color/index.html">Links Animate Color</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/links-inline/index.html">Links Inline</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/links-with-borders-inline/index.html">Links With Borders Inline</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/slab-stat-large/index.html">Slab Stat Large</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/slab-stat-small/index.html">Slab Stat Small</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/slab-stat/index.html">Slab Stat</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/lists/title-text/index.html">Title Text</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Marketing</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/marketing/iphone-app/index.html">Iphone App</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Nav</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/nav/fixed-semi-transparent/index.html">Fixed Semi Transparent</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/nav/large-title-link-list/index.html">Large Title Link List</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/nav/list-overflow/index.html">List Overflow</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/nav/logo-links-inline-collapse/index.html">Logo Links Inline Collapse</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/nav/logo-links-inline/index.html">Logo Links Inline</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/nav/logo-titles-links-centered/index.html">Logo Titles Links Centered</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/nav/minimal-sign-up/index.html">Minimal Sign Up</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/nav/title-link-list/index.html">Title Link List</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Pages</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/pages/4x4-mixed-grid/index.html">4x4 Mixed Grid</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/pages/double/index.html">Double</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/pages/portfolio-project/index.html">Portfolio Project</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/pages/swiss-cover-five-columns/index.html">Swiss Cover Five Columns</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Quotes</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/quotes/left-border/index.html">Left Border</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/quotes/pull-quote/index.html">Pull Quote</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Tables</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/tables/basic/index.html">Basic</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/tables/striped-dark/index.html">Striped Dark</a>
</div>
<div>
<h2 class="f6 fw6 mb2 ttc black-70">Text</h2>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/text/large-paragraph/index.html">Large Paragraph</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/text/narrow-paragraph/index.html">Narrow Paragraph</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/text/paragraph/index.html">Paragraph</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/text/small-narrow-paragraph/index.html">Small Narrow Paragraph</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/text/small-paragraph/index.html">Small Paragraph</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/text/title-subtitle-centered/index.html">Title Subtitle Centered</a>
<a class="f6 f5-ns fw4 dib mr3 mb2 black-70 link hover-blue"
href="/components/text/wide-paragraph/index.html">Wide Paragraph</a>
</div>
</section>
</section>
</main>
<script src="/js/highlight.min.js"></script>
<script>
hljs.highlightBlock(document.querySelector('#css'))
hljs.highlightBlock(document.querySelector('#html'))
</script>
<style>
/*
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #111;
color: rgba(0,0,0,.7);
background-color: #fff;
background-color: rgba(255,255,255,.2);
}
.hljs-comment,
.hljs-quote {
color: #998;
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
color: #333;
font-weight: bold;
}
.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
color: #006C71;
}
.hljs-string,
.hljs-doctag {
color: #C64774;
}
.hljs-title,
.hljs-section,
.hljs-selector-id {
color: #900;
font-weight: bold;
}
.hljs-subst {
font-weight: normal;
}
.hljs-type,
.hljs-class .hljs-title {
color: #458;
font-weight: bold;
}
.hljs-tag,
.hljs-name,
.hljs-attribute {
color: #00449E;
font-weight: normal;
}
.hljs-regexp,
.hljs-link {
color: #009926;
}
.hljs-symbol,
.hljs-bullet {
color: #990073;
}
.hljs-built_in,
.hljs-builtin-name {
color: #0086b3;
}
.hljs-meta {
color: #999;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
</style>
<footer class="bg-white black-70 ph3 ph5-ns pv5 pv6-ns bt b--black-10">
<div class="mw9 center">
<div class="mb5 lh-copy">
<a class="black-70 link hover-blue b dib mr3 mb3" href="/" title="Home">
Home
</a>
<a class="black-70 link hover-blue b dib mr3 mb3" href="/docs" title="Docs">
Docs
</a>
<a class="black-70 link hover-blue b dib mr3 mb3" href="/components/" title="Components">
Components
</a>
<a class="black-70 link hover-blue b dib mr3 mb3" href="/gallery/" title="Gallery of Sites built with Tachyons">
Gallery
</a>
<a class="black-70 link hover-blue b dib mr3 mb3" href="/resources/" title="Resources related to Tachyons">
Resources
</a>
<a class="black-70 link hover-blue b dib mr3 mb3" href="/xray/" title="The X-Ray chrome extension for aligning things to a grid.">
X-Ray
</a>
<a class="black-70 link hover-blue b dib mr3 mb3" href="http://opencollective.com/tachyons" title="Support Tachyons Development">
Supporting Tachyons
</a>
</div>
<article class="v-top">
<iframe src="https://ghbtns.com/github-btn.html?user=tachyons-css&repo=tachyons&type=star&count=true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=tachyons-css&repo=tachyons&type=fork&count=true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe>
<a href="https://twitter.com/intent/tweet?text=Tachyons: A functional css toolkit for designing in the browser.&url=http://tachyons.io" class="twitter bg-white-50 link dib dim br2 ph2 pb1 lh-solid v-top" style="background-color: #55acee;">
<svg class="geomicon dib v-mid" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="#fff">
<path d="M2 4 C6 8 10 12 15 11 A6 6 0 0 1 22 4 A6 6 0 0 1 26 6 A8 8 0 0 0 31 4 A8 8 0 0 1 28 8 A8 8 0 0 0 32 7 A8 8 0 0 1 28 11 A18 18 0 0 1 10 30 A18 18 0 0 1 0 27 A12 12 0 0 0 8 24 A8 8 0 0 1 3 20 A8 8 0 0 0 6 19.5 A8 8 0 0 1 0 12 A8 8 0 0 0 3 13 A8 8 0 0 1 2 4"/>
</svg>
<span class="dib v-mid white fw6" style="font-size: 12px;">Tweet</span>
</a>
</article>
<div class="mt4">
<a class="ba black-70 no-underline grow br2 b inline-flex items-center mr3 mb3 pv2 ph3" href="https://twitter.com/tachyons_css" title="Follow us on Twitter">
<div class="w2 pv1 pr2">
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M16 3.038c-.59.26-1.22.437-1.885.517.677-.407 1.198-1.05 1.443-1.816-.634.375-1.337.648-2.085.795-.598-.638-1.45-1.036-2.396-1.036-1.812 0-3.282 1.468-3.282 3.28 0 .258.03.51.085.75C5.152 5.39 2.733 4.084 1.114 2.1.83 2.583.67 3.147.67 3.75c0 1.14.58 2.143 1.46 2.732-.538-.017-1.045-.165-1.487-.41v.04c0 1.59 1.13 2.918 2.633 3.22-.276.074-.566.114-.865.114-.21 0-.416-.02-.617-.058.418 1.304 1.63 2.253 3.067 2.28-1.124.88-2.54 1.404-4.077 1.404-.265 0-.526-.015-.783-.045 1.453.93 3.178 1.474 5.032 1.474 6.038 0 9.34-5 9.34-9.338 0-.143-.004-.284-.01-.425.64-.463 1.198-1.04 1.638-1.7z" fill-rule="nonzero"/></svg>
</div>
<span>Follow @tachyons_css</span>
</a>
<a class="ba black-70 no-underline grow br2 b inline-flex items-center mr3 mb3 pv2 ph3" href="http://tachyons-slack-invite.herokuapp.com" title="Join our Slack Channel">
<div class="dib w2 pv1 pr2">
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><g fill-rule="nonzero"><path d="M6.586 7.33l.69 2.057 2.137-.716-.69-2.056-2.137.716z"/><path d="M12.55 9.37l-1.037.347.36 1.073c.145.434-.09.904-.524 1.05-.096.03-.19.045-.287.042-.338-.01-.65-.226-.765-.566l-.36-1.072-2.138.716.36 1.072c.145.435-.09.905-.523 1.05-.096.032-.192.045-.286.043-.34-.01-.65-.226-.764-.566l-.36-1.075-1.037.348c-.096.03-.19.045-.286.042-.34-.008-.65-.226-.765-.565-.146-.434.09-.904.522-1.05L5.7 9.914l-.69-2.058-1.037.347c-.094.032-.19.045-.285.043-.338-.01-.65-.226-.765-.566-.145-.434.09-.904.523-1.05l1.037-.347-.36-1.073c-.145-.434.09-.904.524-1.05.435-.145.905.09 1.05.524l.36 1.072 2.137-.716-.36-1.072c-.144-.435.09-.905.524-1.05.435-.145.906.09 1.05.523l.36 1.075 1.037-.347c.434-.146.904.088 1.05.522.145.434-.09.904-.523 1.05l-1.037.347.69 2.057 1.036-.347c.435-.145.905.09 1.05.523.146.434-.09.904-.522 1.05zm2.78-3.57C13.68.304 11.298-.98 5.8.67.304 2.32-.98 4.7.67 10.2c1.65 5.497 4.03 6.78 9.53 5.13 5.497-1.65 6.78-4.03 5.13-9.53z"/></g></svg>
</div>
<span>
Need Help? Join our Slack Channel
</span>
</a>
<a class="ba br2 black-70 no-underline grow b inline-flex items-center mb3 pv2 ph3" href="https://github.com/tachyons-css/tachyons/issues" title="File a bug, request a feature, ask a question!">
<div class="w2 pv1 pr2">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 0C3.58 0 0 3.582 0 8c0 3.535 2.292 6.533 5.47 7.59.4.075.547-.172.547-.385 0-.19-.007-.693-.01-1.36-2.226.483-2.695-1.073-2.695-1.073-.364-.924-.89-1.17-.89-1.17-.725-.496.056-.486.056-.486.803.056 1.225.824 1.225.824.714 1.223 1.873.87 2.33.665.072-.517.278-.87.507-1.07-1.777-.2-3.644-.888-3.644-3.953 0-.873.31-1.587.823-2.147-.083-.202-.358-1.015.077-2.117 0 0 .672-.215 2.2.82.638-.178 1.323-.266 2.003-.27.68.004 1.364.092 2.003.27 1.527-1.035 2.198-.82 2.198-.82.437 1.102.163 1.915.08 2.117.513.56.823 1.274.823 2.147 0 3.073-1.87 3.75-3.653 3.947.287.246.543.735.543 1.48 0 1.07-.01 1.933-.01 2.195 0 .215.144.463.55.385C13.71 14.53 16 11.534 16 8c0-4.418-3.582-8-8-8"/></svg>
</div>
<span>Open an Issue on GitHub</span>
</a>
</div>
<p class="f6 measure copy lh-copy">
Have a question? Need help? Feel free to open an issue on GitHub or ask a
question in our slack channel. We’re here to try and help make designing in
the browser fun.
</p>
<div class="pt4 cf mw5">
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?zoneid=1673&serve=C6AILKT&placement=tachyonsio" id="_carbonads_js"></script>
</div>
<small class="f6 measure db lh-copy mt5">
A tachyon /ˈtæki.ɒn/ or tachyonic particle is a hypothetical particle
that always moves faster than light.
The word comes from the Greek:
<br> <br>
ταχύς or tachys, meaning “swift, quick, fast, rapid”
</small>
</div>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55773803-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>