1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Most simple reset ever found
// @link https://meiert.com/en/blog/stop-using-resets/#comment-240548
html {
box-sizing: border-box;
height: 100%;
}
*,
:after,
:before {
margin: 0;
padding: 0;
border: 0;
outline: 0;
box-sizing: inherit;
}
::-moz-focus-inner {
border: 0;
}
body {
position:relative;
}
a {
text-decoration: none;
color: inherit;
}
a:focus {
outline: 0;
}
ul {
list-style:none;
}