forked from nk-components/css-reset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (54 loc) · 608 Bytes
/
index.css
File metadata and controls
65 lines (54 loc) · 608 Bytes
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
html {
box-sizing: border-box;
border-collapse: collapse;
line-height: 1;
}
* {
border-collapse: inherit;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
*:not(body) {
background-repeat: no-repeat;
background-position: 50%;
background-size: cover;
}
[hidden] {
display: none !important;
}
html,
body {
padding: 0;
margin: 0;
}
ul,
ol,
menu {
margin: 0;
padding: 0;
list-style: none;
}
li {
margin: 0;
padding: 0;
}
a {
color: inherit;
}
p,
small {
margin: 0;
padding: 0;
}
form,
figure {
margin: 0;
}
fieldset {
border: none;
margin: 0;
padding: 0;
}