aboutsummaryrefslogtreecommitdiff
path: root/client/style.css
blob: 8f1f293dda8088c1fceb2a10a9fcedb04b905b5f (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
html {
  font-size: 18px;
  font-family: sans-serif;
  text-align: center;
}

h1 {
  font-weight: lighter;
  text-transform: uppercase;
  font-size: 24px;
  border-bottom: 1px solid black;
}

@media screen and (min-width: 800px) {
  .players {
    position: absolute;
    top: 0px;
    left: 18px;
    width: 250px;
  }

  .main {
    position: absolute;
    top: 0px;
    left: 280px;
  }
}

.table {
  margin-bottom: 60px;
}

table {
  text-align: left;
}

.change-name {
  margin-top: 18px;
}

button, input {
  display: block;
  margin: 12px auto 12px auto;
}

.card {
  border-radius: 18px;
  display: inline-block;
  margin: 18px;
  padding: 18px;
  width: 300px;
  border: 2px solid black;
  vertical-align: text-top;
  max-width: calc(100% - 76px);
  filter: drop-shadow(3px 3px 3px black);
}

.black {
  color: white;
  background: black;
  width: inherit;
  margin: 12px auto 12px auto;
}

.votable {
  cursor: pointer;
}

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

.voted {
  background: #003300;
}

.winner {
  background: #701e58;
}

.white {
  color: black;
  background: white;
  cursor: pointer;
}

.selected {
  background: #d2f4c6;
}

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

.filled {
  text-decoration: underline;
}