Louis authored on25/08/2018 23:51:28
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,58 @@
1
+/* http://meyerweb.com/eric/tools/css/reset/
2
+   v2.0b1 | 201101
3
+   NOTE: WORK IN PROGRESS
4
+   USE WITH CAUTION AND TEST WITH ABANDON */
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, ol, ul, li,
13
+fieldset, form, label, legend,
14
+table, caption, tbody, tfoot, thead, tr, th, td,
15
+article, aside, canvas, details, figcaption, figure,
16
+footer, header, hgroup, menu, nav, section, summary,
17
+time, mark, audio, video {
18
+  margin: 0;
19
+  padding: 0;
20
+  border: 0;
21
+  outline: 0;
22
+  font-size: 100%;
23
+  font: inherit;
24
+  vertical-align: baseline;
25
+}
26
+
27
+input, textarea, button {
28
+  outline: none;
29
+}
30
+
31
+/* HTML5 display-role reset for older browsers */
32
+article, aside, details, figcaption, figure,
33
+footer, header, hgroup, menu, nav, section {
34
+  display: block;
35
+}
36
+
37
+body {
38
+  line-height: 1;
39
+}
40
+
41
+ol, ul {
42
+  list-style: none;
43
+}
44
+
45
+blockquote:before, blockquote:after,
46
+q:before, q:after {
47
+  content: '';
48
+  content: none;
49
+}
50
+
51
+/* apply a natural box layout model to all elements, but allowing components to change */
52
+html {
53
+  box-sizing: border-box;
54
+}
55
+
56
+*, *:before, *:after {
57
+  box-sizing: inherit;
58
+}