blob: 8903cf2591e04750cdc998ae5f16ef6e3ccd9a29 (
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
122
123
124
125
126
127
128
|
body {
margin: 0;
padding: 0;
font-family: 'Georgia';
}
.selector {
position: fixed;
top: 0;
right: 0;
background-color: grey;
height: 395px;
color: white;
z-index: 100;
border: solid 1px black;
}
.selector .list {
width: 500px;
display: none;
float: left;
padding-top: 5px;
}
.selector:hover .list {
display: block;
}
.selector .lollipop {
text-align: center;
width: 50px;
font-size: 32px;
cursor: pointer;
float: left;
}
.selector .list-row {
clear: both;
margin-top: 5px;
height: 15px;
}
.selector .list-movement {
float: left;
margin: 0 5px;
width: 15px;
text-align: right;
margin-right: 35px;
}
.selector .list-movement[data-movement] {
text-decoration: underline;
cursor: pointer;
margin-right: 5px;
}
.viewport {
margin: 5px 0 0 5px;
border: solid 1px black;
background-color: grey;
overflow: hidden;
float: left;
}
.table {
border: solid 2px black;
background-color: #25A282;
color: white;
font-weight: bold;
}
.player {
border: solid 1px black;
text-align: center;
}
.player,
table.summary th {
color: white;
font-weight: normal;
text-shadow:
-1px -1px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
1px 1px 0 black;
}
.cards {
border: solid 2px white;
border-radius: 3px;
color: white;
font-size: 10px;
text-align: right;
}
.summary {
float: left;
margin: 5px;
}
table.summary td {
width: 20px;
height: 20px;
text-align: center;
color: white;
}
.controls {
position: fixed;
top: 400px;
right: 0px;
}
.controls .play,
.controls .stop,
.controls .step {
width: 50px;
height: 30px;
background-color: grey;
color: white;
font-size: 12px;
line-height: 30px;
float: left;
cursor: pointer;
margin: 10px;
text-align: center;
border: solid 1px black;
}
|