]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui/build/fonts/fonts.css
Release 6.5.0
[Github/sugarcrm.git] / include / javascript / yui / build / fonts / fonts.css
1 /*
2 Copyright (c) 2011, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.com/yui/license.html
5 version: 2.9.0
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 textarea,
32 button {
33         font:99% arial,helvetica,clean,sans-serif;
34 }
35
36 /**
37  * To help tables remember to inherit
38  */
39 table {
40         font-size:inherit;
41         font:100%;
42 }
43
44 /**
45  * Bump up IE to get to 13px equivalent for these fixed-width elements
46  */
47 pre,
48 code,
49 kbd,
50 samp,
51 tt {
52         font-family:monospace;
53         *font-size:108%;
54         line-height:100%;
55 }