-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy path_reset.scss
More file actions
84 lines (75 loc) · 914 Bytes
/
_reset.scss
File metadata and controls
84 lines (75 loc) · 914 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// Set new HTML5 elements to block or inline-block for older browsers
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
audio,
video,
canvas {
display: inline-block;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre,
blockquote,
figure,
figcaption,
table,
ul,
ol,
li,
dl,
dt,
dd {
margin: 0;
padding: 0;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
content: '';
}
blockquote,
q {
quotes: '' '';
}
table {
border-collapse: collapse;
border-spacing: 0;
}
iframe,
a img {
border: 0;
}
img,
video,
object,
embed {
height: auto;
max-width: 100%;
}
[hidden] {
display: none;
}