/ src / styles / reset.css
reset.css
 1  /* http://meyerweb.com/eric/tools/css/reset/
 2     v5.0.1 | 20191019
 3     License: none (public domain)
 4  */
 5  
 6  html, body, div, span, applet, object, iframe,
 7  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 8  a, abbr, acronym, address, big, cite, code,
 9  del, dfn, em, img, ins, kbd, q, s, samp,
10  small, strike, strong, sub, sup, tt, var,
11  b, u, i, center,
12  dl, dt, dd, menu, ol, ul, li,
13  fieldset, form, label, legend,
14  table, caption, tbody, tfoot, thead, tr, th, td,
15  article, aside, canvas, details, embed,
16  figure, figcaption, footer, header, hgroup,
17  main, menu, nav, output, ruby, section, summary,
18  time, mark, audio, video {
19  	margin: 0;
20  	padding: 0;
21  	border: 0;
22  	font-size: 100%;
23  	font: inherit;
24  	vertical-align: baseline;
25  }
26  /* HTML5 display-role reset for older browsers */
27  article, aside, details, figcaption, figure,
28  footer, header, hgroup, main, menu, nav, section {
29  	display: block;
30  }
31  /* HTML5 hidden-attribute fix for newer browsers */
32  *[hidden] {
33      display: none;
34  }
35  body {
36  	line-height: 1;
37  }
38  menu, ol, ul {
39  	list-style: none;
40  }
41  blockquote, q {
42  	quotes: none;
43  }
44  blockquote:before, blockquote:after,
45  q:before, q:after {
46  	content: '';
47  	content: none;
48  }
49  table {
50  	border-collapse: collapse;
51  	border-spacing: 0;
52  }