-
Notifications
You must be signed in to change notification settings - Fork 0
/
_reset.css
55 lines (46 loc) · 941 Bytes
/
_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
/* Begin Reset */
html {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-size: 100%;
height: 100%;
}
*, *::before, *::after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
font-size: 1rem;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
height: 100%;
display: flex;
flex-direction: column;
}
input, button, textarea, select {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button, input {
overflow: visible;
}
button, select {
text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
-webkit-appearance: button;
}
a {
text-decoration: none;
color: inherit;
}
/* Consider other specific element resets as necessary */
/* End Reset */