comparison rhodecode/public/js/yui/fonts/fonts.css @ 547:1e757ac98988

renamed project to rhodecode
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Oct 2010 03:18:16 +0200
parents pylons_app/public/js/yui/fonts/fonts.css@564e40829f80
children 289ff43cc190
comparison
equal deleted inserted replaced
546:7c2f5e4d7bbf 547:1e757ac98988
1 /*
2 Copyright (c) 2009, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.net/yui/license.txt
5 version: 2.8.0r4
6 */
7 /**
8 * YUI Fonts
9 * @module fonts
10 * @namespace yui-
11 * @requires
12 */
13
14 /**
15 * Percents could work for IE, but for backCompat purposes, we are using keywords.
16 * x-small is for IE6/7 quirks mode.
17 */
18 body {
19 font:13px/1.231 arial,helvetica,clean,sans-serif;
20 /* for IE6/7 */
21 *font-size:small;
22 /* for IE Quirks Mode */
23 *font:x-small;
24 }
25
26 /**
27 * Nudge down to get to 13px equivalent for these form elements
28 */
29 select,
30 input,
31 button,
32 textarea,
33 button {
34 font:99% arial,helvetica,clean,sans-serif;
35 }
36
37 /**
38 * To help tables remember to inherit
39 */
40 table {
41 font-size:inherit;
42 font:100%;
43 }
44
45 /**
46 * Bump up IE to get to 13px equivalent for these fixed-width elements
47 */
48 pre,
49 code,
50 kbd,
51 samp,
52 tt {
53 font-family:monospace;
54 *font-size:108%;
55 line-height:100%;
56 }