Skip to content

Commit cdcff81

Browse files
author
mrmrs
committed
Fix css
1 parent fd0b81d commit cdcff81

File tree

2 files changed

+81
-47
lines changed

2 files changed

+81
-47
lines changed

css/tachyons.css

+79-44
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
@import './_text-align';
2-
/*! TACHYONS v4.6.0 | http://tachyons.io */
1+
/*! TACHYONS v4.7.4 | http://tachyons.io */
32
/*
43
*
54
* ________ ______
@@ -62,7 +61,7 @@ figure { margin: 1em 40px; }
6261
* 1. Add the correct box sizing in Firefox.
6362
* 2. Show the overflow in Edge and IE.
6463
*/
65-
hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ }
64+
hr { -webkit-box-sizing: content-box; box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ }
6665
/**
6766
* 1. Correct the inheritance and scaling of font size in all browsers.
6867
* 2. Correct the odd `em` font sizing in all browsers.
@@ -174,7 +173,7 @@ fieldset { padding: .35em .75em .625em; }
174173
* 3. Remove the padding so developers are not caught out when they zero out
175174
* `fieldset` elements in all browsers.
176175
*/
177-
legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ }
176+
legend { -webkit-box-sizing: border-box; box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ }
178177
/**
179178
* 1. Add the correct display in IE 9-.
180179
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
@@ -188,7 +187,7 @@ textarea { overflow: auto; }
188187
* 1. Add the correct box sizing in IE 10-.
189188
* 2. Remove the padding in IE 10-.
190189
*/
191-
[type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
190+
[type="checkbox"], [type="radio"] { -webkit-box-sizing: border-box; box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
192191
/**
193192
* Correct the cursor style of increment and decrement buttons in Chrome.
194193
*/
@@ -246,7 +245,7 @@ template { display: none; }
246245
html, body, div, article, section, main, footer, header, form, fieldset, legend,
247246
pre, code, a, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, textarea, table,
248247
td, th, tr, input[type="email"], input[type="number"], input[type="password"],
249-
input[type="tel"], input[type="text"], input[type="url"], .border-box { box-sizing: border-box; }
248+
input[type="tel"], input[type="text"], input[type="url"], .border-box { -webkit-box-sizing: border-box; box-sizing: border-box; }
250249
/*
251250
252251
ASPECT RATIOS
@@ -555,11 +554,11 @@ img { max-width: 100%; }
555554
-l = large
556555
557556
*/
558-
.shadow-1 { box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
559-
.shadow-2 { box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
560-
.shadow-3 { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
561-
.shadow-4 { box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
562-
.shadow-5 { box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
557+
.shadow-1 { -webkit-box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
558+
.shadow-2 { -webkit-box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
559+
.shadow-3 { -webkit-box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
560+
.shadow-4 { -webkit-box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
561+
.shadow-5 { -webkit-box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
563562
/*
564563
565564
CODE
@@ -698,9 +697,9 @@ img { max-width: 100%; }
698697
.items-stretch { -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }
699698
.self-start { -ms-flex-item-align: start; align-self: flex-start; }
700699
.self-end { -ms-flex-item-align: end; align-self: flex-end; }
701-
.self-center { -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; }
700+
.self-center { -ms-flex-item-align: center; align-self: center; }
702701
.self-baseline { -ms-flex-item-align: baseline; align-self: baseline; }
703-
.self-stretch { -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; }
702+
.self-stretch { -ms-flex-item-align: stretch; align-self: stretch; }
704703
.justify-start { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
705704
.justify-end { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
706705
.justify-center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
@@ -1696,6 +1695,30 @@ code, .code { font-family: Consolas, monaco, monospace; }
16961695
.strike { text-decoration: line-through; }
16971696
.underline { text-decoration: underline; }
16981697
.no-underline { text-decoration: none; }
1698+
/*
1699+
1700+
TEXT ALIGN
1701+
Docs: http://tachyons.io/docs/typography/text-align/
1702+
1703+
Base
1704+
t = text-align
1705+
1706+
Modifiers
1707+
l = left
1708+
r = right
1709+
c = center
1710+
j = justify (For layout. Justified text is inaccessible.)
1711+
1712+
Media Query Extensions:
1713+
-ns = not-small
1714+
-m = medium
1715+
-l = large
1716+
1717+
*/
1718+
.tl { text-align: left; }
1719+
.tr { text-align: right; }
1720+
.tc { text-align: center; }
1721+
.tj { text-align: justify; }
16991722
/*
17001723
17011724
TEXT TRANSFORM
@@ -1899,7 +1922,7 @@ code, .code { font-family: Consolas, monaco, monospace; }
18991922
http://tobiasahlin.com/blog/how-to-animate-box-shadow/
19001923
*/
19011924
.shadow-hover { cursor: pointer; position: relative; -webkit-transition: all .5s cubic-bezier( .165, .84, .44, 1 ); transition: all .5s cubic-bezier( .165, .84, .44, 1 ); }
1902-
.shadow-hover::after { content: ''; box-shadow: 0 0 16px 2px rgba( 0, 0, 0, .2 ); opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; -webkit-transition: opacity .5s cubic-bezier( .165, .84, .44, 1 ); transition: opacity .5s cubic-bezier( .165, .84, .44, 1 ); }
1925+
.shadow-hover::after { content: ''; -webkit-box-shadow: 0 0 16px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 16px 2px rgba( 0, 0, 0, .2 ); opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; -webkit-transition: opacity .5s cubic-bezier( .165, .84, .44, 1 ); transition: opacity .5s cubic-bezier( .165, .84, .44, 1 ); }
19031926
.shadow-hover:hover::after, .shadow-hover:focus::after { opacity: 1; }
19041927
/* Combine with classes in skins and skins-pseudo for
19051928
* many different transition possibilities. */
@@ -2105,11 +2128,11 @@ code, .code { font-family: Consolas, monaco, monospace; }
21052128
.br-0-ns { border-right-width: 0; }
21062129
.bb-0-ns { border-bottom-width: 0; }
21072130
.bl-0-ns { border-left-width: 0; }
2108-
.shadow-1-ns { box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
2109-
.shadow-2-ns { box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
2110-
.shadow-3-ns { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
2111-
.shadow-4-ns { box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
2112-
.shadow-5-ns { box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
2131+
.shadow-1-ns { -webkit-box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
2132+
.shadow-2-ns { -webkit-box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
2133+
.shadow-3-ns { -webkit-box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
2134+
.shadow-4-ns { -webkit-box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
2135+
.shadow-5-ns { -webkit-box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
21132136
.top-0-ns { top: 0; }
21142137
.left-0-ns { left: 0; }
21152138
.right-0-ns { right: 0; }
@@ -2164,9 +2187,9 @@ code, .code { font-family: Consolas, monaco, monospace; }
21642187
.items-stretch-ns { -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }
21652188
.self-start-ns { -ms-flex-item-align: start; align-self: flex-start; }
21662189
.self-end-ns { -ms-flex-item-align: end; align-self: flex-end; }
2167-
.self-center-ns { -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; }
2190+
.self-center-ns { -ms-flex-item-align: center; align-self: center; }
21682191
.self-baseline-ns { -ms-flex-item-align: baseline; align-self: baseline; }
2169-
.self-stretch-ns { -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; }
2192+
.self-stretch-ns { -ms-flex-item-align: stretch; align-self: stretch; }
21702193
.justify-start-ns { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
21712194
.justify-end-ns { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
21722195
.justify-center-ns { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
@@ -2188,8 +2211,8 @@ code, .code { font-family: Consolas, monaco, monospace; }
21882211
.order-7-ns { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; }
21892212
.order-8-ns { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; }
21902213
.order-last-ns { -webkit-box-ordinal-group: 100000; -ms-flex-order: 99999; order: 99999; }
2191-
.fl-ns { float: left; display: inline; }
2192-
.fr-ns { float: right; display: inline; }
2214+
.fl-ns { float: left; _display: inline; }
2215+
.fr-ns { float: right; _display: inline; }
21932216
.fn-ns { float: none; }
21942217
.i-ns { font-style: italic; }
21952218
.fs-normal-ns { font-style: normal; }
@@ -2433,6 +2456,10 @@ code, .code { font-family: Consolas, monaco, monospace; }
24332456
.strike-ns { text-decoration: line-through; }
24342457
.underline-ns { text-decoration: underline; }
24352458
.no-underline-ns { text-decoration: none; }
2459+
.tl-ns { text-align: left; }
2460+
.tr-ns { text-align: right; }
2461+
.tc-ns { text-align: center; }
2462+
.tj-ns { text-align: justify; }
24362463
.ttc-ns { text-transform: capitalize; }
24372464
.ttl-ns { text-transform: lowercase; }
24382465
.ttu-ns { text-transform: uppercase; }
@@ -2453,7 +2480,7 @@ code, .code { font-family: Consolas, monaco, monospace; }
24532480
.small-caps-ns { font-variant: small-caps; }
24542481
.truncate-ns { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
24552482
.center-ns { margin-right: auto; margin-left: auto; }
2456-
.clip-ns { position: fixed !important; position: absolute !important; clip: rect( 1px 1px 1px 1px ); /* IE6, IE7 */ clip: rect( 1px, 1px, 1px, 1px ); }
2483+
.clip-ns { position: fixed !important; _position: absolute !important; clip: rect( 1px 1px 1px 1px ); /* IE6, IE7 */ clip: rect( 1px, 1px, 1px, 1px ); }
24572484
.ws-normal-ns { white-space: normal; }
24582485
.nowrap-ns { white-space: nowrap; }
24592486
.pre-ns { white-space: pre; }
@@ -2517,11 +2544,11 @@ code, .code { font-family: Consolas, monaco, monospace; }
25172544
.br-0-m { border-right-width: 0; }
25182545
.bb-0-m { border-bottom-width: 0; }
25192546
.bl-0-m { border-left-width: 0; }
2520-
.shadow-1-m { box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
2521-
.shadow-2-m { box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
2522-
.shadow-3-m { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
2523-
.shadow-4-m { box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
2524-
.shadow-5-m { box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
2547+
.shadow-1-m { -webkit-box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
2548+
.shadow-2-m { -webkit-box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
2549+
.shadow-3-m { -webkit-box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
2550+
.shadow-4-m { -webkit-box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
2551+
.shadow-5-m { -webkit-box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
25252552
.top-0-m { top: 0; }
25262553
.left-0-m { left: 0; }
25272554
.right-0-m { right: 0; }
@@ -2576,9 +2603,9 @@ code, .code { font-family: Consolas, monaco, monospace; }
25762603
.items-stretch-m { -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }
25772604
.self-start-m { -ms-flex-item-align: start; align-self: flex-start; }
25782605
.self-end-m { -ms-flex-item-align: end; align-self: flex-end; }
2579-
.self-center-m { -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; }
2606+
.self-center-m { -ms-flex-item-align: center; align-self: center; }
25802607
.self-baseline-m { -ms-flex-item-align: baseline; align-self: baseline; }
2581-
.self-stretch-m { -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; }
2608+
.self-stretch-m { -ms-flex-item-align: stretch; align-self: stretch; }
25822609
.justify-start-m { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
25832610
.justify-end-m { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
25842611
.justify-center-m { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
@@ -2600,8 +2627,8 @@ code, .code { font-family: Consolas, monaco, monospace; }
26002627
.order-7-m { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; }
26012628
.order-8-m { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; }
26022629
.order-last-m { -webkit-box-ordinal-group: 100000; -ms-flex-order: 99999; order: 99999; }
2603-
.fl-m { float: left; display: inline; }
2604-
.fr-m { float: right; display: inline; }
2630+
.fl-m { float: left; _display: inline; }
2631+
.fr-m { float: right; _display: inline; }
26052632
.fn-m { float: none; }
26062633
.i-m { font-style: italic; }
26072634
.fs-normal-m { font-style: normal; }
@@ -2845,6 +2872,10 @@ code, .code { font-family: Consolas, monaco, monospace; }
28452872
.strike-m { text-decoration: line-through; }
28462873
.underline-m { text-decoration: underline; }
28472874
.no-underline-m { text-decoration: none; }
2875+
.tl-m { text-align: left; }
2876+
.tr-m { text-align: right; }
2877+
.tc-m { text-align: center; }
2878+
.tj-m { text-align: justify; }
28482879
.ttc-m { text-transform: capitalize; }
28492880
.ttl-m { text-transform: lowercase; }
28502881
.ttu-m { text-transform: uppercase; }
@@ -2865,7 +2896,7 @@ code, .code { font-family: Consolas, monaco, monospace; }
28652896
.small-caps-m { font-variant: small-caps; }
28662897
.truncate-m { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
28672898
.center-m { margin-right: auto; margin-left: auto; }
2868-
.clip-m { position: fixed !important; position: absolute !important; clip: rect( 1px 1px 1px 1px ); /* IE6, IE7 */ clip: rect( 1px, 1px, 1px, 1px ); }
2899+
.clip-m { position: fixed !important; _position: absolute !important; clip: rect( 1px 1px 1px 1px ); /* IE6, IE7 */ clip: rect( 1px, 1px, 1px, 1px ); }
28692900
.ws-normal-m { white-space: normal; }
28702901
.nowrap-m { white-space: nowrap; }
28712902
.pre-m { white-space: pre; }
@@ -2929,11 +2960,11 @@ code, .code { font-family: Consolas, monaco, monospace; }
29292960
.br-0-l { border-right-width: 0; }
29302961
.bb-0-l { border-bottom-width: 0; }
29312962
.bl-0-l { border-left-width: 0; }
2932-
.shadow-1-l { box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
2933-
.shadow-2-l { box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
2934-
.shadow-3-l { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
2935-
.shadow-4-l { box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
2936-
.shadow-5-l { box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
2963+
.shadow-1-l { -webkit-box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
2964+
.shadow-2-l { -webkit-box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
2965+
.shadow-3-l { -webkit-box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
2966+
.shadow-4-l { -webkit-box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
2967+
.shadow-5-l { -webkit-box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }
29372968
.top-0-l { top: 0; }
29382969
.left-0-l { left: 0; }
29392970
.right-0-l { right: 0; }
@@ -2988,9 +3019,9 @@ code, .code { font-family: Consolas, monaco, monospace; }
29883019
.items-stretch-l { -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }
29893020
.self-start-l { -ms-flex-item-align: start; align-self: flex-start; }
29903021
.self-end-l { -ms-flex-item-align: end; align-self: flex-end; }
2991-
.self-center-l { -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; }
3022+
.self-center-l { -ms-flex-item-align: center; align-self: center; }
29923023
.self-baseline-l { -ms-flex-item-align: baseline; align-self: baseline; }
2993-
.self-stretch-l { -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; }
3024+
.self-stretch-l { -ms-flex-item-align: stretch; align-self: stretch; }
29943025
.justify-start-l { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
29953026
.justify-end-l { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
29963027
.justify-center-l { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
@@ -3012,8 +3043,8 @@ code, .code { font-family: Consolas, monaco, monospace; }
30123043
.order-7-l { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; }
30133044
.order-8-l { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; }
30143045
.order-last-l { -webkit-box-ordinal-group: 100000; -ms-flex-order: 99999; order: 99999; }
3015-
.fl-l { float: left; display: inline; }
3016-
.fr-l { float: right; display: inline; }
3046+
.fl-l { float: left; _display: inline; }
3047+
.fr-l { float: right; _display: inline; }
30173048
.fn-l { float: none; }
30183049
.i-l { font-style: italic; }
30193050
.fs-normal-l { font-style: normal; }
@@ -3257,6 +3288,10 @@ code, .code { font-family: Consolas, monaco, monospace; }
32573288
.strike-l { text-decoration: line-through; }
32583289
.underline-l { text-decoration: underline; }
32593290
.no-underline-l { text-decoration: none; }
3291+
.tl-l { text-align: left; }
3292+
.tr-l { text-align: right; }
3293+
.tc-l { text-align: center; }
3294+
.tj-l { text-align: justify; }
32603295
.ttc-l { text-transform: capitalize; }
32613296
.ttl-l { text-transform: lowercase; }
32623297
.ttu-l { text-transform: uppercase; }
@@ -3277,7 +3312,7 @@ code, .code { font-family: Consolas, monaco, monospace; }
32773312
.small-caps-l { font-variant: small-caps; }
32783313
.truncate-l { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
32793314
.center-l { margin-right: auto; margin-left: auto; }
3280-
.clip-l { position: fixed !important; position: absolute !important; clip: rect( 1px 1px 1px 1px ); /* IE6, IE7 */ clip: rect( 1px, 1px, 1px, 1px ); }
3315+
.clip-l { position: fixed !important; _position: absolute !important; clip: rect( 1px 1px 1px 1px ); /* IE6, IE7 */ clip: rect( 1px, 1px, 1px, 1px ); }
32813316
.ws-normal-l { white-space: normal; }
32823317
.nowrap-l { white-space: nowrap; }
32833318
.pre-l { white-space: pre; }

css/tachyons.min.css

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)