aboutsummaryrefslogtreecommitdiff
path: root/static/css/blueprint/src/reset.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/blueprint/src/reset.css')
-rwxr-xr-xstatic/css/blueprint/src/reset.css45
1 files changed, 45 insertions, 0 deletions
diff --git a/static/css/blueprint/src/reset.css b/static/css/blueprint/src/reset.css
new file mode 100755
index 0000000..09d9131
--- /dev/null
+++ b/static/css/blueprint/src/reset.css
@@ -0,0 +1,45 @@
1/* --------------------------------------------------------------
2
3 reset.css
4 * Resets default browser CSS.
5
6-------------------------------------------------------------- */
7
8html, body, div, span, object, iframe,
9h1, h2, h3, h4, h5, h6, p, blockquote, pre,
10a, abbr, acronym, address, code,
11del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
12fieldset, form, label, legend,
13table, caption, tbody, tfoot, thead, tr, th, td,
14article, aside, dialog, figure, footer, header,
15hgroup, nav, section {
16 margin: 0;
17 padding: 0;
18 border: 0;
19 font-weight: inherit;
20 font-style: inherit;
21 font-size: 100%;
22 font-family: inherit;
23 vertical-align: baseline;
24}
25
26article, aside, dialog, figure, footer, header,
27hgroup, nav, section {
28 display:block;
29}
30
31body {
32 line-height: 1.5;
33}
34
35/* Tables still need 'cellspacing="0"' in the markup. */
36table { border-collapse: separate; border-spacing: 0; }
37caption, th, td { text-align: left; font-weight: normal; }
38table, td, th { vertical-align: middle; }
39
40/* Remove possible quote marks (") from <q>, <blockquote>. */
41blockquote:before, blockquote:after, q:before, q:after { content: ""; }
42blockquote, q { quotes: "" ""; }
43
44/* Remove annoying border on linked images. */
45a img { border: none; }