1
|
1 |
/* -------------------------------------------------------------- |
|
2 |
|
|
3 |
Reset default browser CSS. |
|
4 |
|
|
5 |
Based on work by Eric Meyer: |
|
6 |
http://meyerweb.com/eric/tools/css/reset/index.html |
|
7 |
|
|
8 |
-------------------------------------------------------------- */ |
|
9 |
|
|
10 |
/* v1.0 | 20080212 */ |
|
11 |
|
|
12 |
html, body, div, span, applet, object, iframe, |
|
13 |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
|
14 |
a, abbr, acronym, address, big, cite, code, |
|
15 |
del, dfn, em, font, img, ins, kbd, q, s, samp, |
|
16 |
small, strike, strong, sub, sup, tt, var, |
|
17 |
b, u, i, center, |
|
18 |
dl, dt, dd, ol, ul, li, |
|
19 |
fieldset, form, label, legend, |
|
20 |
table, caption, tbody, tfoot, thead, tr, th, td { |
|
21 |
margin: 0; |
|
22 |
padding: 0; |
|
23 |
border: 0; |
|
24 |
outline: 0; |
|
25 |
font-size: 100%; |
|
26 |
vertical-align: baseline; |
|
27 |
background: transparent; |
|
28 |
} |
|
29 |
body { |
|
30 |
background:#fff; |
|
31 |
line-height: 1; |
|
32 |
} |
|
33 |
ol, ul { |
|
34 |
list-style: none; |
|
35 |
} |
|
36 |
blockquote, q { |
|
37 |
quotes: none; |
|
38 |
} |
|
39 |
blockquote:before, blockquote:after, |
|
40 |
q:before, q:after { |
|
41 |
content: ''; |
|
42 |
content: none; |
|
43 |
} |
|
44 |
|
|
45 |
/* remember to define focus styles! */ |
|
46 |
:focus { |
|
47 |
outline: 0; |
|
48 |
} |
|
49 |
|
|
50 |
/* remember to highlight inserts somehow! */ |
|
51 |
ins { |
|
52 |
text-decoration: none; |
|
53 |
} |
|
54 |
del { |
|
55 |
text-decoration: line-through; |
|
56 |
} |
|
57 |
|
|
58 |
/* tables still need 'cellspacing="0"' in the markup */ |
|
59 |
table { |
|
60 |
border-collapse: collapse; |
|
61 |
border-spacing: 0; |
|
62 |
} |
|
63 |
|
|
64 |
a img { border: none; } |