aboutsummaryrefslogtreecommitdiff
path: root/public/main.css
blob: 0f092cf7fbc64a0e2a3a06a9d1cafa78c322296f (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
h1 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 46px;
  color: #33AA00;
}

ul.aliments {
  display: table;
  margin: 0 auto;
}

ul.aliments > li {
  display: table-row;
}

ul.aliments > li.title {
  font-weight: bold;
}

ul.aliments > li > div {
  display: table-cell;
  padding: 15px;
}

ul.aliments > li > .Good {
  color: green;
}

ul.aliments > li > .Medium {
  color: orange;
}

ul.aliments > li > .Bad {
  color: red;
}

ul.aliments > li > .number {
  text-align: right;
}

ul.aliments > li:nth-child(2n+3) {
  background-color: #EEEEEE;
}