Display most recent comment together with description
[infodrom/flyspray-theme] / reset.css
1 /* --------------------------------------------------------------
2
3    reset.css
4    * Resets default browser CSS.
5
6 -------------------------------------------------------------- */
7
8 html {
9   margin:0;
10   padding:0;
11   border:0;
12 }
13
14 body, div, span, object, iframe,
15 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
16 a, abbr, acronym, address, code,
17 del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
18 fieldset, form, label, legend,
19 table, caption, tbody, tfoot, thead, tr, th, td,
20 article, aside, dialog, figure, footer, header,
21 hgroup, nav, section {
22   margin: 0;
23   padding: 0;
24   border: 0;
25   font-size: 100%;
26   font: inherit;
27   vertical-align: baseline;
28 }
29
30 /* This helps to make newer HTML5 elements behave like DIVs in older browers */
31 article, aside, details, figcaption, figure, dialog,
32 footer, header, hgroup, menu, nav, section {
33     display:block;
34 }
35
36 /* Line-height should always be unitless! */
37 body {
38   line-height: 1.5;
39   background: white;
40 /*  direction:rtl; */
41 }
42
43 /* Tables still need 'cellspacing="0"' in the markup. */
44 table {
45   border-collapse: separate;
46   border-spacing: 0;
47 }
48 /* float:none prevents the span-x classes from breaking table-cell display */
49 caption, th, td {
50   text-align: left;
51   font-weight: normal;
52   float:none !important;
53 }
54 table, th, td {
55   vertical-align: middle;
56 }
57
58 /* Remove possible quote marks (") from <q>, <blockquote>. */
59 blockquote:before, blockquote:after, q:before, q:after { content: ''; }
60 blockquote, q { quotes: "" ""; }
61
62 /* Remove annoying border on linked images. */
63 a img { border: none; }
64
65 /* Remember to define your own focus styles! */
66 :focus { outline: 0; }