Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
	TODO will need to remove settings on HTML since we can't namespace it.
3
	TODO with the prefix, should I group by selector or property for weight savings?
4
*/
5
html{
6
	color:#000;
7
	background:#FFF;
8
}
9
/*
10
	TODO remove settings on BODY since we can't namespace it.
11
*/
12
/*
13
	TODO test putting a class on HEAD.
14
		- Fails on FF.
15
*/
16
body,
17
div,
18
dl,
19
dt,
20
dd,
21
ul,
22
ol,
23
li,
24
h1,
25
h2,
26
h3,
27
h4,
28
h5,
29
h6,
30
pre,
31
code,
32
form,
33
fieldset,
34
legend,
35
input,
36
textarea,
37
p,
38
blockquote,
39
th,
40
td {
41
	margin:0;
42
	padding:0;
43
}
44
table {
45
	border-collapse:collapse;
46
	border-spacing:0;
47
}
48
fieldset,
49
img {
50
	border:0;
51
}
52
/*
53
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
54
*/
55
address,
56
caption,
57
cite,
58
code,
59
dfn,
60
em,
61
strong,
62
th,
63
var {
64
	font-style:normal;
65
	font-weight:normal;
66
}
67
 
68
ol,
69
ul {
70
	list-style:none;
71
}
72
 
73
caption,
74
th {
75
	text-align:left;
76
}
77
h1,
78
h2,
79
h3,
80
h4,
81
h5,
82
h6 {
83
	font-size:100%;
84
	font-weight:normal;
85
}
86
q:before,
87
q:after {
88
	content:'';
89
}
90
abbr,
91
acronym {
92
	border:0;
93
	font-variant:normal;
94
}
95
/* to preserve line-height and selector appearance */
96
sup {
97
	vertical-align:text-top;
98
}
99
sub {
100
	vertical-align:text-bottom;
101
}
102
input,
103
textarea,
104
select {
105
	font-family:inherit;
106
	font-size:inherit;
107
	font-weight:inherit;
108
	*font-size:100%; /*to enable resizing for IE*/
109
}
110
/*because legend doesn't inherit in IE */
111
legend {
112
	color:#000;
113
}
114
 
115
/* YUI CSS Detection Stamp */
116
#yui3-css-stamp.cssreset { display: none; }