aboutsummaryrefslogtreecommitdiff
path: root/client/style.css
blob: 735c5f815c434ee9e16b2531c890c96c697bb90b (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
58
59
60
html {
  font-size: 18px;
}

body {
  display: flex;
}

.card {
  border-radius: 18px;
  display: inline-block;
  margin: 18px;
  padding: 18px;
  width: 300px;
  vertical-align: text-top;
}

.black {
  color: white;
  background: black;
  width: 600px;
}

.votable {
  cursor: pointer;
}

.mine {
  background: #444444;
  color: #dddddd;
}

.voted {
  background: #003300;
}

.winner {
  background: #701e58;
}

.white {
  color: black;
  background: white;
  border: 2px solid black;
  cursor: pointer;
}

.selected {
  background: #d2f4c6;
}

.blank {
  min-width: 42px;
  border-bottom: 1px solid white;
  display: inline-block;
}

.filled {
  text-decoration: underline;
}