-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (63 loc) · 1.22 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
:root {
--lighterblue: rgba(50, 75, 125, .75);
--deepblue: rgb(44, 66, 99);
--creamy: #e7dfce;
--darkred: rgb(190, 0, 50);
}
body {
background-color: var(--creamy);
user-select: none;
}
#game {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 250px;
width: 300px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 5px double var(--deepblue);
//padding: 5px 25px
}
#display {
width: 160px;
}
#bankDisplay {
border: 2px solid var(--deepblue);
padding: 5px 10px;
}
button {
margin: 5px;
background-color: var(--darkred);
color: #e7dfce;
width: 75px;
height: 25px;
border: none;
}
btn:disabled {
opacity: .5;
}
button:hover {
opacity: .85;
border-left: 3px solid var(--creamy);
border-right: 3px solid var(--creamy);
}
button:active{
background-color: var(--lighterblue);
}
#specialBetting {
width: 160px;
//border: 2px dotted black;
display: flex;
flex-direction: column;
align-items: center
}
.specialBetButtons {
//display: flex;
background-color: var(--deepblue);
//height: 25px;
width: 100%;
}