blob: ff25dd5053cdfd924a9b24fc2f0a987e81a315fe (
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
html {
font-size: 18px;
font-family: sans-serif;
text-align: center;
color: #444;
}
h1 {
font-weight: lighter;
text-transform: uppercase;
font-size: 24px;
}
h1:first-line {
background: white;
}
h1::after {
content: "";
border-bottom: 1px solid #444;
display: block;
margin-top: -15px;
margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
.players {
position: absolute;
top: 0px;
left: 18px;
width: 250px;
}
.main {
position: absolute;
top: 0px;
left: 286px;
right: 18px;
}
}
.players table {
color: black;
}
.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 rgba(0, 0, 0, 0.5));
}
.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;
}
.authors {
margin-top: 6px;
}
|