-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreset.css
More file actions
83 lines (72 loc) · 1.5 KB
/
reset.css
File metadata and controls
83 lines (72 loc) · 1.5 KB
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
/* Reset box sizing and borders of all elements */
*,
*:before,
*:after {
border-color: currentColor;
border-style: solid;
border-width: 0;
box-sizing: border-box;
}
/* Set default html style */
html {
font-size: 16px;
line-height: 1.5;
scroll-behavior: smooth;
}
/* Set default body style */
body {
line-height: inherit;
margin: 0;
padding: 0;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
/* Reset margins in some elements */
:where(blockquote, h1, h2, h3, h4, h5, h6, hr, p, pre) {
margin: 0;
}
/* Normalize typography in headings */
:where(h1, h2, h3, h4, h5, h6) {
font-size: inherit;
font-weight: inherit;
}
/* Reset margins on lists */
:where(ul, ol, dl) {
margin: 0;
padding: 0;
}
/* Fix bold weight (in firefox) */
:where(strong, b) {
font-weight: bold;
}
/* Reset links */
:where(a) {
color: inherit;
text-decoration: inherit;
}
/* Make images and videos responsive by default */
:where(img, video) {
display: block;
height: auto;
max-width: 100%;
}
/* Reset table border */
:where(table) {
border-collapse: collapse;
border-spacing: 0;
}
/* Reset form elements */
:where(button, input, select, textarea) {
color: inherit;
font-family: inherit;
font-weight: inherit;
line-height: inherit;
margin: 0;
padding: 0;
}
/* Prevent resizing textareas horizontally */
:where(textarea) {
resize: vertical;
}