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