MDL-11517 reserved word MOD used in table alias in questions backup code
[moodle-pu.git] / lib / yui / base / base.css
blob85dcca7dd2e7768e4d9e33076af927f418bc6472
1 /*
2 Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.net/yui/license.txt
5 version: 2.3.0
6 */
7 /* base.css, part of YUI's CSS Foundation */
8 h1 {
9 /*18px via YUI Fonts CSS foundation*/
10 font-size:138.5%;
12 h2 {
13 /*16px via YUI Fonts CSS foundation*/
14 font-size:123.1%;
16 h3 {
17 /*14px via YUI Fonts CSS foundation*/
18 font-size:108%;
20 h1,h2,h3 {
21 /* top & bottom margin based on font size */
22 margin:1em 0;
24 h1,h2,h3,h4,h5,h6,strong {
25 /*bringing boldness back to headers and the strong element*/
26 font-weight:bold;
28 abbr,acronym {
29 /*indicating to users that more info is available */
30 border-bottom:1px dotted #000;
31 cursor:help;
33 em {
34 /*bringing italics back to the em element*/
35 font-style:italic;
37 blockquote,ul,ol,dl {
38 /*giving blockquotes and lists room to breath*/
39 margin:1em;
41 ol,ul,dl {
42 /*bringing lists on to the page with breathing room */
43 margin-left:2em;
45 ol li {
46 /*giving OL's LIs generated numbers*/
47 list-style: decimal outside;
49 ul li {
50 /*giving UL's LIs generated disc markers*/
51 list-style: disc outside;
53 dl dd {
54 /*giving UL's LIs generated numbers*/
55 margin-left:1em;
57 th,td {
58 /*borders and padding to make the table readable*/
59 border:1px solid #000;
60 padding:.5em;
62 th {
63 /*distinguishing table headers from data cells*/
64 font-weight:bold;
65 text-align:center;
67 caption {
68 /*coordinated marking to match cell's padding*/
69 margin-bottom:.5em;
70 /*centered so it doesn't blend in to other content*/
71 text-align:center;
73 p,fieldset,table {
74 /*so things don't run into each other*/
75 margin-bottom:1em;