-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcore-reset.css
83 lines (76 loc) · 1.27 KB
/
core-reset.css
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
html {
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
font-size: 100%;
line-height: 1;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
*,
*::before,
*::after {
box-sizing: inherit;
margin: 0;
padding: 0;
border: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
font-style: inherit;
text-decoration: none;
vertical-align: baseline;
background: transparent;
}
img {
max-width: 100%;
height: auto;
border-style: none;
vertical-align: middle;
}
a {
color: currentColor;
}
ol,
ul {
list-style: none;
}
[type='button'],
[type='color'],
[type='date'],
[type='datetime-local'],
[type='email'],
[type='file'],
[type='month'],
[type='number'],
[type='password'],
[type='range'],
[type='reset'],
[type='search'],
[type='submit'],
[type='tel'],
[type='text'],
[type='time'],
[type='url'],
[type='week'],
select,
textarea,
button {
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
}
::placeholder {
color: currentColor;
opacity: .5;
}
table,
tr,
th,
td {
border-collapse: collapse;
border-spacing: 0;
text-align: left;
}