|
602
|
1 |
/*! |
|
|
2 |
Pure v0.3.0 |
|
|
3 |
Copyright 2013 Yahoo! Inc. All rights reserved. |
|
|
4 |
Licensed under the BSD License. |
|
|
5 |
https://github.com/yui/pure/blob/master/LICENSE.md |
|
|
6 |
*/ |
|
|
7 |
|
|
|
8 |
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/ |
|
|
9 |
|
|
|
10 |
.yui3-g { |
|
|
11 |
letter-spacing: -0.31em; |
|
|
12 |
/* Webkit: collapse white-space between units */ |
|
|
13 |
*letter-spacing: normal; |
|
|
14 |
/* reset IE < 8 */ |
|
|
15 |
*word-spacing: -0.43em; |
|
|
16 |
/* IE < 8: collapse white-space between units */ |
|
|
17 |
text-rendering: optimizespeed; |
|
|
18 |
/* Webkit: fixes text-rendering: optimizeLegibility */ |
|
|
19 |
/* |
|
|
20 |
Sets the font stack to fonts known to work properly with the above letter |
|
|
21 |
and word spacings. See: https://github.com/yui/pure/issues/41/ |
|
|
22 |
|
|
|
23 |
The following font stack makes Pure Grids work on all known environments. |
|
|
24 |
|
|
|
25 |
* FreeSans: Ships with many Linux distros, including Ubuntu |
|
|
26 |
|
|
|
27 |
* Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and |
|
|
28 |
Arial to get picked up by the browser, even though neither is available |
|
|
29 |
in Chrome OS. |
|
|
30 |
|
|
|
31 |
* Droid Sans: Ships with all versions of Android. |
|
|
32 |
|
|
|
33 |
* Helvetica, Arial, sans-serif: Common font stack on OS X and Windows. |
|
|
34 |
*/ |
|
|
35 |
font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif; |
|
|
36 |
/* |
|
|
37 |
Use flexbox when possible to avoid `letter-spacing` side-effects. |
|
|
38 |
|
|
|
39 |
NOTE: Firefox (as of 25) does not currently support flex-wrap, so the |
|
|
40 |
`-moz-` prefix version is omitted. |
|
|
41 |
*/ |
|
|
42 |
display: -webkit-flex; |
|
|
43 |
-webkit-flex-flow: row wrap; |
|
|
44 |
/* IE10 uses display: flexbox */ |
|
|
45 |
display: -ms-flexbox; |
|
|
46 |
-ms-flex-flow: row wrap; |
|
|
47 |
} |
|
|
48 |
|
|
|
49 |
/* Opera as of 12 on Windows needs word-spacing. |
|
|
50 |
The ".opera-only" selector is used to prevent actual prefocus styling |
|
|
51 |
and is not required in markup. |
|
|
52 |
*/ |
|
|
53 |
|
|
|
54 |
.opera-only :-o-prefocus, |
|
|
55 |
.yui3-g { |
|
|
56 |
word-spacing: -0.43em; |
|
|
57 |
} |
|
|
58 |
|
|
|
59 |
.yui3-u { |
|
|
60 |
display: inline-block; |
|
|
61 |
*display: inline; |
|
|
62 |
/* IE < 8: fake inline-block */ |
|
|
63 |
zoom: 1; |
|
|
64 |
letter-spacing: normal; |
|
|
65 |
word-spacing: normal; |
|
|
66 |
vertical-align: top; |
|
|
67 |
text-rendering: auto; |
|
|
68 |
} |
|
|
69 |
|
|
|
70 |
/* |
|
|
71 |
Resets the font family back to the OS/browser's default sans-serif font, |
|
|
72 |
this the same font stack that Normalize.css sets for the `body`. |
|
|
73 |
*/ |
|
|
74 |
|
|
|
75 |
.yui3-g [class *= "yui3-u"] { |
|
|
76 |
font-family: sans-serif; |
|
|
77 |
}/*! |
|
|
78 |
Pure v0.3.0 |
|
|
79 |
Copyright 2013 Yahoo! Inc. All rights reserved. |
|
|
80 |
Licensed under the BSD License. |
|
|
81 |
https://github.com/yui/pure/blob/master/LICENSE.md |
|
|
82 |
*/ |
|
|
83 |
|
|
|
84 |
.yui3-u-1, |
|
|
85 |
.yui3-u-1-2, |
|
|
86 |
.yui3-u-1-3, |
|
|
87 |
.yui3-u-2-3, |
|
|
88 |
.yui3-u-1-4, |
|
|
89 |
.yui3-u-3-4, |
|
|
90 |
.yui3-u-1-5, |
|
|
91 |
.yui3-u-2-5, |
|
|
92 |
.yui3-u-3-5, |
|
|
93 |
.yui3-u-4-5, |
|
|
94 |
.yui3-u-1-6, |
|
|
95 |
.yui3-u-5-6, |
|
|
96 |
.yui3-u-1-8, |
|
|
97 |
.yui3-u-3-8, |
|
|
98 |
.yui3-u-5-8, |
|
|
99 |
.yui3-u-7-8, |
|
|
100 |
.yui3-u-1-12, |
|
|
101 |
.yui3-u-5-12, |
|
|
102 |
.yui3-u-7-12, |
|
|
103 |
.yui3-u-11-12, |
|
|
104 |
.yui3-u-1-24, |
|
|
105 |
.yui3-u-5-24, |
|
|
106 |
.yui3-u-7-24, |
|
|
107 |
.yui3-u-11-24, |
|
|
108 |
.yui3-u-13-24, |
|
|
109 |
.yui3-u-17-24, |
|
|
110 |
.yui3-u-19-24, |
|
|
111 |
.yui3-u-23-24 { |
|
|
112 |
display: inline-block; |
|
|
113 |
*display: inline; |
|
|
114 |
/* IE < 8: fake inline-block */ |
|
|
115 |
zoom: 1; |
|
|
116 |
letter-spacing: normal; |
|
|
117 |
word-spacing: normal; |
|
|
118 |
vertical-align: top; |
|
|
119 |
text-rendering: auto; |
|
|
120 |
} |
|
|
121 |
|
|
|
122 |
.yui3-u-1 { |
|
|
123 |
width: 100%; |
|
|
124 |
} |
|
|
125 |
|
|
|
126 |
.yui3-u-1-2 { |
|
|
127 |
width: 50%; |
|
|
128 |
*width: 49.969%; |
|
|
129 |
} |
|
|
130 |
|
|
|
131 |
.yui3-u-1-3 { |
|
|
132 |
width: 33.3333%; |
|
|
133 |
*width: 33.3023%; |
|
|
134 |
} |
|
|
135 |
|
|
|
136 |
.yui3-u-2-3 { |
|
|
137 |
width: 66.6667%; |
|
|
138 |
*width: 66.6357%; |
|
|
139 |
} |
|
|
140 |
|
|
|
141 |
.yui3-u-1-4 { |
|
|
142 |
width: 25%; |
|
|
143 |
*width: 24.969%; |
|
|
144 |
} |
|
|
145 |
|
|
|
146 |
.yui3-u-3-4 { |
|
|
147 |
width: 75%; |
|
|
148 |
*width: 74.969%; |
|
|
149 |
} |
|
|
150 |
|
|
|
151 |
.yui3-u-1-5 { |
|
|
152 |
width: 20%; |
|
|
153 |
*width: 19.969%; |
|
|
154 |
} |
|
|
155 |
|
|
|
156 |
.yui3-u-2-5 { |
|
|
157 |
width: 40%; |
|
|
158 |
*width: 39.969%; |
|
|
159 |
} |
|
|
160 |
|
|
|
161 |
.yui3-u-3-5 { |
|
|
162 |
width: 60%; |
|
|
163 |
*width: 59.969%; |
|
|
164 |
} |
|
|
165 |
|
|
|
166 |
.yui3-u-4-5 { |
|
|
167 |
width: 80%; |
|
|
168 |
*width: 79.969%; |
|
|
169 |
} |
|
|
170 |
|
|
|
171 |
.yui3-u-1-6 { |
|
|
172 |
width: 16.6667%; |
|
|
173 |
*width: 16.6357%; |
|
|
174 |
} |
|
|
175 |
|
|
|
176 |
.yui3-u-5-6 { |
|
|
177 |
width: 83.3333%; |
|
|
178 |
*width: 83.3023%; |
|
|
179 |
} |
|
|
180 |
|
|
|
181 |
.yui3-u-1-8 { |
|
|
182 |
width: 12.5%; |
|
|
183 |
*width: 12.469%; |
|
|
184 |
} |
|
|
185 |
|
|
|
186 |
.yui3-u-3-8 { |
|
|
187 |
width: 37.5%; |
|
|
188 |
*width: 37.469%; |
|
|
189 |
} |
|
|
190 |
|
|
|
191 |
.yui3-u-5-8 { |
|
|
192 |
width: 62.5%; |
|
|
193 |
*width: 62.469%; |
|
|
194 |
} |
|
|
195 |
|
|
|
196 |
.yui3-u-7-8 { |
|
|
197 |
width: 87.5%; |
|
|
198 |
*width: 87.469%; |
|
|
199 |
} |
|
|
200 |
|
|
|
201 |
.yui3-u-1-12 { |
|
|
202 |
width: 8.3333%; |
|
|
203 |
*width: 8.3023%; |
|
|
204 |
} |
|
|
205 |
|
|
|
206 |
.yui3-u-5-12 { |
|
|
207 |
width: 41.6667%; |
|
|
208 |
*width: 41.6357%; |
|
|
209 |
} |
|
|
210 |
|
|
|
211 |
.yui3-u-7-12 { |
|
|
212 |
width: 58.3333%; |
|
|
213 |
*width: 58.3023%; |
|
|
214 |
} |
|
|
215 |
|
|
|
216 |
.yui3-u-11-12 { |
|
|
217 |
width: 91.6667%; |
|
|
218 |
*width: 91.6357%; |
|
|
219 |
} |
|
|
220 |
|
|
|
221 |
.yui3-u-1-24 { |
|
|
222 |
width: 4.1667%; |
|
|
223 |
*width: 4.1357%; |
|
|
224 |
} |
|
|
225 |
|
|
|
226 |
.yui3-u-5-24 { |
|
|
227 |
width: 20.8333%; |
|
|
228 |
*width: 20.8023%; |
|
|
229 |
} |
|
|
230 |
|
|
|
231 |
.yui3-u-7-24 { |
|
|
232 |
width: 29.1667%; |
|
|
233 |
*width: 29.1357%; |
|
|
234 |
} |
|
|
235 |
|
|
|
236 |
.yui3-u-11-24 { |
|
|
237 |
width: 45.8333%; |
|
|
238 |
*width: 45.8023%; |
|
|
239 |
} |
|
|
240 |
|
|
|
241 |
.yui3-u-13-24 { |
|
|
242 |
width: 54.1667%; |
|
|
243 |
*width: 54.1357%; |
|
|
244 |
} |
|
|
245 |
|
|
|
246 |
.yui3-u-17-24 { |
|
|
247 |
width: 70.8333%; |
|
|
248 |
*width: 70.8023%; |
|
|
249 |
} |
|
|
250 |
|
|
|
251 |
.yui3-u-19-24 { |
|
|
252 |
width: 79.1667%; |
|
|
253 |
*width: 79.1357%; |
|
|
254 |
} |
|
|
255 |
|
|
|
256 |
.yui3-u-23-24 { |
|
|
257 |
width: 95.8333%; |
|
|
258 |
*width: 95.8023%; |
|
|
259 |
} |
|
|
260 |
/* YUI CSS Detection Stamp */ |
|
|
261 |
#yui3-css-stamp.cssgrids { display: none; } |