summaryrefslogtreecommitdiff
path: root/scss/normalize.scss
blob: 9d59ef8ceb94c21f1ad2d36fc311ef2c19146008 (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
:root,
html,
body,
main,
article,
section,
header,
footer,
button,
ol,
ul,
li,
dl,
dt,
dd,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  text-transform: none;
  overflow: visible;
}

:is(button, [type='button'], [type='reset'], [type='submit'])::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:is(button, [type='button'], [type='reset'], [type='submit']):-moz-focusring {
  outline: 1px dotted ButtonText;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden] {
  display: none;
}

a, :link, :visited {
  background-color: transparent;
  color: currentColor;
  text-decoration: none;
}