[233] | 1 | /* |
---|
| 2 | Document : resetstyle |
---|
| 3 | Created on : 6-dec-2011, 14:10:40 |
---|
| 4 | Author : Thijs Schipper |
---|
| 5 | Description: Reset object styling for cross-browser compatibility |
---|
| 6 | |
---|
| 7 | */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 10 | TODO customize this sample style |
---|
| 11 | Syntax recommendation http://www.w3.org/TR/REC-CSS2/ |
---|
| 12 | */ |
---|
| 13 | |
---|
| 14 | /* http://meyerweb.com/eric/tools/css/reset/ |
---|
| 15 | v2.0 | 20110126 |
---|
| 16 | License: none (public domain) |
---|
| 17 | */ |
---|
| 18 | |
---|
| 19 | html, body, div, span, applet, object, iframe, |
---|
| 20 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
---|
| 21 | a, abbr, acronym, address, big, cite, code, |
---|
| 22 | del, dfn, em, img, ins, kbd, q, s, samp, |
---|
| 23 | small, strike, strong, sub, sup, tt, var, |
---|
| 24 | b, u, i, center, |
---|
| 25 | dl, dt, dd, ol, ul, li, |
---|
| 26 | fieldset, form, label, legend, |
---|
| 27 | table, caption, tbody, tfoot, thead, tr, th, td, |
---|
| 28 | article, aside, canvas, details, embed, |
---|
| 29 | figure, figcaption, footer, header, hgroup, |
---|
| 30 | menu, nav, output, ruby, section, summary, |
---|
| 31 | time, mark, audio, video { |
---|
| 32 | margin: 0; |
---|
| 33 | padding: 0; |
---|
| 34 | border: 0; |
---|
| 35 | font-size: 100%; |
---|
| 36 | font: inherit; |
---|
| 37 | vertical-align: baseline; |
---|
| 38 | } |
---|
| 39 | /* HTML5 display-role reset for older browsers */ |
---|
| 40 | article, aside, details, figcaption, figure, |
---|
| 41 | footer, header, hgroup, menu, nav, section { |
---|
| 42 | display: block; |
---|
| 43 | } |
---|
| 44 | body { |
---|
| 45 | line-height: 1; |
---|
| 46 | } |
---|
| 47 | ol, ul { |
---|
| 48 | list-style: none; |
---|
| 49 | } |
---|
| 50 | blockquote, q { |
---|
| 51 | quotes: none; |
---|
| 52 | } |
---|
| 53 | blockquote:before, blockquote:after, |
---|
| 54 | q:before, q:after { |
---|
| 55 | content: ''; |
---|
| 56 | content: none; |
---|
| 57 | } |
---|
| 58 | table { |
---|
| 59 | border-collapse: collapse; |
---|
| 60 | border-spacing: 0; |
---|
| 61 | } |
---|