aboutsummaryrefslogtreecommitdiffstats
path: root/src/style.css
blob: 4c1d58a3016e27e992bd1c1ef81bf535239888ff (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
*, *:before, *:after {
  box-sizing: inherit;
}

html {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  
  background-color: #affbff78;
  box-sizing: border-box;
}

body {
  border: 0;

  max-width: 600px;
  margin-left: auto;
  margin-right: auto;

  padding: 1rem;
}

@media screen and (max-width: 600px) {
  body {
    text-align: center;
  }

  ul {
    padding: 0;
  }

  li {
    list-style: none;
  }
}

a {
  color: #570C3D;
}