diff options
author | Nicolas LÅ“uillet <nicolas@coteo.com> | 2013-04-03 15:14:01 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@coteo.com> | 2013-04-03 15:14:01 +0200 |
commit | 1a268ba710b2cdb4ede98af3368c43d66c4c5e53 (patch) | |
tree | 5a2f00523e7f7aefc0cd0e48254fa20aa907bb6f /css/reset.css | |
download | wallabag-1a268ba710b2cdb4ede98af3368c43d66c4c5e53.tar.gz wallabag-1a268ba710b2cdb4ede98af3368c43d66c4c5e53.tar.zst wallabag-1a268ba710b2cdb4ede98af3368c43d66c4c5e53.zip |
first commit
Diffstat (limited to 'css/reset.css')
-rwxr-xr-x | css/reset.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/css/reset.css b/css/reset.css new file mode 100755 index 00000000..530ddc3d --- /dev/null +++ b/css/reset.css | |||
@@ -0,0 +1,35 @@ | |||
1 | html, body, div, span, object, iframe, | ||
2 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
3 | a, abbr, acronym, address, code, | ||
4 | del, dfn, em, img, q, dl, dt, dd, ol, ul, li, | ||
5 | fieldset, form, label, legend, | ||
6 | table, caption, tbody, tfoot, thead, tr, th, td { | ||
7 | margin: 0; | ||
8 | padding: 0; | ||
9 | border: 0; | ||
10 | font-weight: inherit; | ||
11 | font-style: inherit; | ||
12 | font-size: 100%; | ||
13 | font-family: inherit; | ||
14 | vertical-align: baseline; | ||
15 | } | ||
16 | |||
17 | |||
18 | /* Tables still need 'cellspacing="0"' in the markup. */ | ||
19 | table { border-collapse: separate; border-spacing: 0; } | ||
20 | caption, th, td { text-align: left; font-weight: normal; } | ||
21 | table, td, th { vertical-align: middle; } | ||
22 | |||
23 | /* Remove possible quote marks (") from <q>, <blockquote>. */ | ||
24 | blockquote:before, blockquote:after, q:before, q:after { content: ""; } | ||
25 | blockquote, q { quotes: "" ""; } | ||
26 | |||
27 | /* Remove annoying border on linked images. */ | ||
28 | a img { border: none; } | ||
29 | |||
30 | |||
31 | body { | ||
32 | |||
33 | margin: 10px; | ||
34 | } | ||
35 | |||