-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (108 loc) · 1.86 KB
/
style.css
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
body {
background-image: url('images/table.png');
background-size:cover;
}
svg {
height: 100%;
}
h2 {
color: beige;
}
hr {
margin: 25px auto 15px;
color: beige;
}
#titleBanner {
position:relative;
height: 150px;
margin: 0 auto;
width: max-content;
}
#titlePips {
display: block;
width: fit-content;
margin: 0 auto;
}
#viewBox{
display: block;
width: 480px;
margin: 40px auto;
}
#dealerCards,
#playerCards {
display: inline-block;
width: 60%;
margin: 0 auto;
border: 3px solid goldenrod;
border-radius: 6px;
padding: 10px;
}
#dealerSum,
#playerSum {
display: inline-block;
width: fit-content;
margin: 0 0 0 20px;
font-weight: 700;
font-size: 28px;
color: bisque;
}
#gameStatus {
width: 80%;
margin: 0 auto 30px;
padding: 16px;
text-align: center;
font-weight: 400;
font-size: larger;
background-color: bisque;
border-radius: 8px;
}
#betLine {
margin-top: 35px;
width: 60%;
}
#betLine p{
display: inline-block;
color: goldenrod;
font-weight: 900;
font-size: 24px;
margin: 12px 0;
text-shadow: 2px 2px #042404;
}
#addCashButton,
#subCashButton {
float: right;
width: 34px;
height: 34px;
margin: 0 10px;
margin-top: 12px;
font-weight: 900;
font-size: 20px;
border-radius: 100%;
}
#startButton,
#drawButton,
#standButton {
padding: 8px 6px;
}
#walletLine {
display: inline-block;
margin: 0 0 0 20px;
color: goldenrod;
font-weight: 600;
font-size: 16px;
text-shadow: 2px 2px #042404;
}
#gameMessage {
width: 92%;
height: 23px;
margin: 30px auto;
color: whitesmoke;
text-align: center;
padding: 12px;
border-radius: 5px;
background-color: #042404;
}
.playingCard {
background-color: whitesmoke;
border-radius: 4px;
}