-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (100 loc) · 1.65 KB
/
style.css
File metadata and controls
116 lines (100 loc) · 1.65 KB
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
/* TO-DO: hide House hand (card backs?), reveal House hand after round, determine when tied, automate House hand's stay points, add responsive CSS. */
body {
background-color: #3d3d3d;
}
#id {
color: inherit;
}
.ninja {
display: none;
}
.game {
width: 720px;
border: solid 1px #ddd;
margin: 0 auto;
background: #007e23;
border: solid 10px;
text-align: center;
min-height: 430px;
font-size: 1.5em;
}
.btn {
border: none;
padding: 15px 30px;
border-radius: 10px;
cursor: pointer;
background: #222;
color: white !important;
font-size: 1em;
}
.btn:hover {
background: #004910;
}
.game h3 {
padding: 10px;
background: black;
color: white;
}
.game .game-body {
padding: 20px;
}
.game .game-options {
text-align: center;
}
.game .card {
width: 50px;
height: 80px;
padding: 10px;
border: solid 1px #222;
background-color: gold;
display: inline-block;
border-radius: 10px;
font-size: 10pt;
text-align: center;
margin: 3px;
border: solid 3px;
font-size: 1em;
}
.game .winner {
display: inline-block;
background: goldenrod;
border: solid 5px #222;
border-radius: 10px;
padding: 5px 20px;
margin: 0 auto;
margin-top: 10px;
display: none;
}
.players {
width: 500px;
margin: 0 auto;
margin-top: 20px;
text-align: center;
}
.player {
width: 40%;
border: solid 5px #222;
border-radius: 10px;
padding: 10px;
display: inline-block;
margin: 1%;
vertical-align: top;
background: #808080;
}
.player.active {
border: solid 5px gold;
}
.points {
text-align: center;
font-size: 20pt;
font-weight: bold;
margin: 10px;
}
.deck {
float: left;
background: goldenrod;
color: #222;
padding: 10px;
border-radius: 10px;
border: double 5px;
}