|
602
|
1 |
/* base.css, part of YUI's CSS Foundation */ |
|
|
2 |
.yui3-cssbase h1 { |
|
|
3 |
/*18px via YUI Fonts CSS foundation*/ |
|
|
4 |
font-size:138.5%; |
|
|
5 |
} |
|
|
6 |
.yui3-cssbase h2 { |
|
|
7 |
/*16px via YUI Fonts CSS foundation*/ |
|
|
8 |
font-size:123.1%; |
|
|
9 |
} |
|
|
10 |
.yui3-cssbase h3 { |
|
|
11 |
/*14px via YUI Fonts CSS foundation*/ |
|
|
12 |
font-size:108%; |
|
|
13 |
} |
|
|
14 |
.yui3-cssbase h1,.yui3-cssbase h2,.yui3-cssbase h3 { |
|
|
15 |
/* top & bottom margin based on font size */ |
|
|
16 |
margin:1em 0; |
|
|
17 |
} |
|
|
18 |
.yui3-cssbase h1,.yui3-cssbase h2,.yui3-cssbase h3,.yui3-cssbase h4,.yui3-cssbase h5,.yui3-cssbase h6,.yui3-cssbase strong { |
|
|
19 |
/*bringing boldness back to headers and the strong element*/ |
|
|
20 |
font-weight:bold; |
|
|
21 |
} |
|
|
22 |
.yui3-cssbase abbr,.yui3-cssbase acronym { |
|
|
23 |
/*indicating to users that more info is available */ |
|
|
24 |
border-bottom:1px dotted #000; |
|
|
25 |
cursor:help; |
|
|
26 |
} |
|
|
27 |
.yui3-cssbase em { |
|
|
28 |
/*bringing italics back to the em element*/ |
|
|
29 |
font-style:italic; |
|
|
30 |
} |
|
|
31 |
.yui3-cssbase blockquote,.yui3-cssbase ul,.yui3-cssbase ol,.yui3-cssbase dl { |
|
|
32 |
/*giving blockquotes and lists room to breath*/ |
|
|
33 |
margin:1em; |
|
|
34 |
} |
|
|
35 |
.yui3-cssbase ol,.yui3-cssbase ul,.yui3-cssbase dl { |
|
|
36 |
/*bringing lists on to the page with breathing room */ |
|
|
37 |
margin-left:2em; |
|
|
38 |
} |
|
|
39 |
.yui3-cssbase ol { |
|
|
40 |
/*giving OL's LIs generated numbers*/ |
|
|
41 |
list-style: decimal outside; |
|
|
42 |
} |
|
|
43 |
.yui3-cssbase ul { |
|
|
44 |
/*giving UL's LIs generated disc markers*/ |
|
|
45 |
list-style: disc outside; |
|
|
46 |
} |
|
|
47 |
.yui3-cssbase dl dd { |
|
|
48 |
/*providing spacing for definition terms*/ |
|
|
49 |
margin-left:1em; |
|
|
50 |
} |
|
|
51 |
.yui3-cssbase th,.yui3-cssbase td { |
|
|
52 |
/*borders and padding to make the table readable*/ |
|
|
53 |
border:1px solid #000; |
|
|
54 |
padding:.5em; |
|
|
55 |
} |
|
|
56 |
.yui3-cssbase th { |
|
|
57 |
/*distinguishing table headers from data cells*/ |
|
|
58 |
font-weight:bold; |
|
|
59 |
text-align:center; |
|
|
60 |
} |
|
|
61 |
.yui3-cssbase caption { |
|
|
62 |
/*coordinated margin to match cell's padding*/ |
|
|
63 |
margin-bottom:.5em; |
|
|
64 |
/*centered so it doesn't blend in to other content*/ |
|
|
65 |
text-align:center; |
|
|
66 |
} |
|
|
67 |
.yui3-cssbase p,.yui3-cssbase fieldset,.yui3-cssbase table,.yui3-cssbase pre { |
|
|
68 |
/*so things don't run into each other*/ |
|
|
69 |
margin-bottom:1em; |
|
|
70 |
} |
|
|
71 |
/* setting a consistent width, 160px; |
|
|
72 |
control of type=file still not possible */ |
|
|
73 |
.yui3-cssbase input[type=text],.yui3-cssbase input[type=password],.yui3-cssbase textarea{width:12.25em;*width:11.9em;} |
|
|
74 |
|
|
|
75 |
/* YUI CSS Detection Stamp */ |
|
|
76 |
#yui3-css-stamp.cssbase-context { display: none; } |