-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset.css
More file actions
61 lines (49 loc) · 1.46 KB
/
reset.css
File metadata and controls
61 lines (49 loc) · 1.46 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
html, body, div, span, h1, h2, h3, h4, h5, h6, button, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, nav, output, section, time, mark, audio, video, input, textarea, select {
margin: 0;
padding: 0;
border: 0;
/* inherits the browser's font properties: font-size 16px */
font: inherit;
/* specifies the vertical alignment of an inline element */
vertical-align: baseline;
box-sizing: border-box;
/* specifies the height of line boxes within the element. */
line-height: 1;
border-radius: 0;
/* no outline around anything */
outline: none;
/* inherit the color value of the parent */
color: inherit;
}
ol, ul {
/* no bullets in lists */
list-style: none;
}
a {
/* no underline */
text-decoration: none;
}
button {
cursor: pointer;
background-color: transparent;
}
blockquote, q {
/* no quotes */
quotes: none;
}
table {
/* no spacing between cells*/
border-spacing: 0;
/*borders are collapsed - adjacent table cells share borders */
border-collapse: collapse;
}
input, select, progress{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
svg {
width: 1.9em;
height: 1.9em;
fill: currentColor;
}