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

body {
  font-family: Georgia, Times;
  font-size: 20px;
  background-color: #fff8ea;
  color: #594545;
  width: 700px;
  max-width: calc(100% - 20px);
  margin: auto;
}

h1 {
  color: #815b5b;
  font-family: Helvetica, Tahoma, Arial;
  font-weight: normal;
}

h2,
h3,
h4,
h5,
h6 {
  color: #815b5b;
  font-weight: normal;
}

a {
  color: darkblue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  color: #fff8ea;
  background-color: #594545;
  margin-top: 10px;
  padding: 5px 5px 5px 5px;
}

.header a {
  color: #fff8ea;
  padding: 10px 10px;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
}