blob: e3824b6d56f0843c13f3fd3e59f21eb1e08282e7 (
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
|
html {
font-size: 18px;
}
.card {
padding: 18px;
border-radius: 18px;
}
.black {
color: white;
background: black;
}
.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 {
border-bottom: 2px solid white;
display: inline-block;
min-width: 42px;
}
|