-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreset.mjs
99 lines (99 loc) · 1.34 KB
/
reset.mjs
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
export default function reset({ config = {} } = {}) {
const { reset = true } = config
return reset ? /*css*/`
/*** Reset ***/
*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
border: 0 solid transparent;
}
html:focus-within {
scroll-behavior: smooth;
}
audio,
canvas,
embed,
iframe,
img,
object,
picture,
svg,
video {
display: block;
max-width: 100%;
}
img,
picture,
svg,
video {
block-size: auto;
}
button,
input,
select,
textarea {
font: inherit;
line-height: inherit;
color: inherit;
}
a {
cursor: pointer;
color: inherit;
text-decoration: inherit;
}
a:not([class]) {
text-decoration-skip-ink: auto;
}
button,
[role="button"] {
cursor: pointer;
background-color: transparent;
}
code {
font: inherit;
font-size: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: inherit;
font-weight: inherit;
}
ul[role='list'],
ol[role='list'] {
list-style: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
textarea {
vertical-align: top;
overflow: auto;
}
dialog {
margin: auto;
}
@media (prefers-reduced-motion: reduce) {
html:focus-within {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
` : ''
}