forked from quoid/userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormalize.css
More file actions
63 lines (53 loc) · 940 Bytes
/
Copy pathnormalize.css
File metadata and controls
63 lines (53 loc) · 940 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
/*
https://raw.githubusercontent.com/csstools/sanitize.css/master/sanitize.css
https://necolas.github.io/normalize.css/8.0.1/normalize.css
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
}
b,
strong {
font-weight: bolder;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: 100%;
line-height: inherit;
margin: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
}
input[type="search"] {
-webkit-appearance: textfield;
}
::-webkit-input-placeholder {
color: inherit;
opacity: 0.54;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
::-webkit-search-decoration,
::-webkit-search-cancel-button,
::-webkit-search-results-button,
::-webkit-search-results-decoration {
-webkit-appearance: none;
}