]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui/build/fonts/fonts.css
Release 6.2.0beta4
[Github/sugarcrm.git] / include / javascript / yui / build / fonts / fonts.css
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 }