Initial port
[editorial.git] / assets / main / sass / base / _reset.scss
1 ///
2 /// Editorial by HTML5 UP
3 /// html5up.net | @ajlkn
4 /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 ///
6
7 // Reset.
8 // Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
9
10 html, body, div, span, applet, object,
11 iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
12 pre, a, abbr, acronym, address, big, cite,
13 code, del, dfn, em, img, ins, kbd, q, s, samp,
14 small, strike, strong, sub, sup, tt, var, b,
15 u, i, center, dl, dt, dd, ol, ul, li, fieldset,
16 form, label, legend, table, caption, tbody,
17 tfoot, thead, tr, th, td, article, aside,
18 canvas, details, embed, figure, figcaption,
19 footer, header, hgroup, menu, nav, output, ruby,
20 section, summary, time, mark, audio, video {
21 margin: 0;
22 padding: 0;
23 border: 0;
24 font-size: 100%;
25 font: inherit;
26 vertical-align: baseline;
27 }
28
29 article, aside, details, figcaption, figure,
30 footer, header, hgroup, menu, nav, section {
31 display: block;
32 }
33
34 body {
35 line-height: 1;
36 }
37
38 ol, ul {
39 list-style:none;
40 }
41
42 blockquote, q {
43 quotes: none;
44
45 &:before,
46 &:after {
47 content: '';
48 content: none;
49 }
50 }
51
52 table {
53 border-collapse: collapse;
54 border-spacing: 0;
55 }
56
57 body {
58 -webkit-text-size-adjust: none;
59 }
60
61 mark {
62 background-color: transparent;
63 color: inherit;
64 }
65
66 input::-moz-focus-inner {
67 border: 0;
68 padding: 0;
69 }
70
71 input, select, textarea {
72 -moz-appearance: none;
73 -webkit-appearance: none;
74 -ms-appearance: none;
75 appearance: none;
76 }