about summary refs log tree commit diff stats
path: root/public/index.css
blob: c47a532d4f5b8d07e8b08090f936b2f37c9e8fe1 (plain) (blame)
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
/* Add CSS styles here! */
body {
  font-family: Arial, Helvetica, sans-serif;
}

header {
  margin-top: 15px;
  display: flex;
  flex: 0 1 auto;
  justify-content: space-between;
  max-width: 40em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
header ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0 10px;
}

header ul li {
  margin: 0px 10px;
}

.container {
  margin: 20px;
}

#level {
  border: 0;
  border-bottom: 1px solid black;
  font-weight: bold;
  color: tomato;
}

.strikethrough {
  text-decoration: line-through;
  color: gray;
}

.highlight {
  color: green;
}