OLD | NEW |
1 /* ============================================================================= | 1 /* ============================================================================= |
2 Typography | 2 Typography |
3 | 3 |
4 To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins | 4 To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins |
5 so that the line height of our base font becomes the basic unit of vertical | 5 so that the line height of our base font becomes the basic unit of vertical |
6 measurement. We use multiples of that unit to set the top and bottom margins | 6 measurement. We use multiples of that unit to set the top and bottom margins |
7 for our block level elements and to set the line heights of any fonts. | 7 for our block level elements and to set the line heights of any fonts. |
8 For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm | 8 For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm |
9 ========================================================================== */ | 9 ========================================================================== */ |
10 | 10 |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 display: list-item; | 220 display: list-item; |
221 } | 221 } |
222 | 222 |
223 .uncapitalize::first-letter { | 223 .uncapitalize::first-letter { |
224 text-transform: lowercase; | 224 text-transform: lowercase; |
225 } | 225 } |
226 | 226 |
227 .capitalize::first-letter { | 227 .capitalize::first-letter { |
228 text-transform: uppercase; | 228 text-transform: uppercase; |
229 } | 229 } |
| 230 |
| 231 .kbd { |
| 232 background-color: #f7f7f7; |
| 233 border: 1px solid #ccc; |
| 234 color: #333; |
| 235 font-size: 11px; |
| 236 line-height: 1.4; |
| 237 text-shadow: 0 1px 0 #fff; |
| 238 font-family: Arial,Helvetica,sans-serif; |
| 239 display: inline-block; |
| 240 padding: 0.1em 0.6em; |
| 241 margin: 0 0.1em; |
| 242 white-space: nowrap; |
| 243 -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset; |
| 244 -moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset; |
| 245 box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset; |
| 246 -webkit-border-radius: 3px; |
| 247 -moz-border-radius: 3px; |
| 248 border-radius: 3px; |
| 249 } |
OLD | NEW |