xref: /template/parabola/css/reset.css (revision 9a272093f9bf368292552002d3ad0fa2ed6f9799)
1
2/* Reset default browser CSS */
3/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain)*/
4html, body, div, span, applet, object, iframe,
5h1, h2, h3, h4, h5, h6, p, blockquote, pre,
6a, abbr, acronym, address, big, cite, code,
7del, dfn, em, img, ins, kbd, q, s, samp,
8small, strike, strong, sub, sup, tt, var,
9b, u, i, center,
10dl, dt, dd, ol, ul, li,
11fieldset, form, label, legend,
12table, caption, tbody, tfoot, thead, tr, th, td,
13article, aside, canvas, details, embed,
14figure, figcaption, footer, header, hgroup,
15menu, nav, output, ruby, section, summary,
16time, mark, audio, video {
17	margin: 0;
18	padding: 0;
19	border: 0;
20	font-size: 100%;
21}
22
23*, *:before, *:after {
24	box-sizing: border-box;
25}
26
27/* HTML5 display-role reset for older browsers */
28article, aside, details, figcaption, figure,
29footer, header, hgroup, menu, nav, section {
30	display: block;
31}
32
33ol, ul {
34	list-style: none;
35}
36
37blockquote, q {
38	quotes: none;
39}
40
41blockquote:before,
42blockquote:after,
43q:before,
44q:after {
45	content: '';
46	content: none;
47}
48
49table {
50	border-collapse: collapse;
51	border-spacing: 0;
52}
53
54h1, h2, h3, h4, h5, h6 {
55	clear: both;
56	font-weight: normal;
57}
58
59#content h1,
60#content h2,
61#content h3,
62#content h4,
63#content h5,
64#content h6 {
65	clear: none;
66}
67
68ol, ul {
69	list-style: none;
70}
71
72.entry-content blockquote {
73	padding: 15px;
74	display: block;
75	font-style: italic;
76	margin: 0 auto 1em;
77/* 	clear: both;
78	float: none; */
79	width: 80%;
80}
81
82#content blockquote p {
83	margin-bottom: 0;
84}
85
86del {
87	text-decoration: line-through;
88}
89
90/* tables still need 'cellspacing="0"' in the markup */
91table {
92	border-collapse: collapse;
93	border-spacing: 0;
94}
95
96a img {
97	border: none;
98}
99