aboutsummaryrefslogtreecommitdiff
path: root/assets/css/base/reset.css
blob: 8e0f0f390c440ef031a367cd70dace1721ca74e1 (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
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 30px;
  color: var(--grey-555);
  background: var(--body-bg);
}

header,
nav,
section,
main,
article,
aside,
figure,
footer,
iframe,
object,
svg {
  display: block;
  margin: 0;
}

@media screen and (max-width: 800px) {
  body {
    padding: 80px 0 0;
  }
}