Don't return a null slice from server.ListPath, return an empty one
[armadillo.git] / frontend / reset.css
1 /*
2 style.css contains a reset, font normalization and some base styles.
3
4 credit is left where credit is due.
5 additionally, much inspiration was taken from these projects:
6 yui.yahooapis.com/2.8.1/build/base/base.css
7 camendesign.com/design/
8 praegnanz.de/weblog/htmlcssjs-kickstart
9 */
10
11 /*
12 html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
13 v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
14 html5doctor.com/html-5-reset-stylesheet/
15 */
16
17 html, body, div, span, object, iframe,
18 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
19 abbr, address, cite, code,
20 del, dfn, em, img, ins, kbd, q, samp,
21 small, strong, sub, sup, var,
22 b, i,
23 dl, dt, dd, ol, ul, li,
24 fieldset, form, label, legend,
25 table, caption, tbody, tfoot, thead, tr, th, td,
26 article, aside, figure, footer, header,
27 hgroup, menu, nav, section, menu,
28 time, mark, audio, video {
29 margin:0;
30 padding:0;
31 border:0;
32 outline:0;
33 font-size:100%;
34 vertical-align:baseline;
35 background:transparent;
36 }
37
38 article, aside, figure, footer, header,
39 hgroup, nav, section { display:block; }
40
41 nav ul { list-style:none; }
42
43 blockquote, q { quotes:none; }
44
45 blockquote:before, blockquote:after,
46 q:before, q:after { content:''; content:none; }
47
48 a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }
49
50 ins { background-color:#ff9; color:#000; text-decoration:none; }
51
52 mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }
53
54 del { text-decoration: line-through; }
55
56 abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }
57
58 /* tables still need cellspacing="0" in the markup */
59 table { border-collapse:collapse; border-spacing:0; }
60
61 hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
62
63 input, select { vertical-align:middle; }
64 /* END RESET CSS */
65
66
67 /*
68 fonts.css from the YUI Library: developer.yahoo.com/yui/
69 Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages
70
71 There are three custom edits:
72 * remove arial, helvetica from explicit font stack
73 * make the line-height relative and unit-less
74 * remove the pre, code styles
75 */
76 body { font:13px sans-serif; *font-size:small; *font:x-small; line-height:1.22; }
77
78 table { font-size:inherit; font:100%; }
79
80 select, input, textarea { font:99% sans-serif; }
81
82
83 /* normalize monospace sizing
84 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
85 */
86 pre, code, kbd, samp { font-family: monospace, sans-serif; }
87