-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (70 loc) 路 1.12 KB
/
Copy pathstyle.css
File metadata and controls
83 lines (70 loc) 路 1.12 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
body {
font-family: Arial, sans-serif;
background: #fac0c4;
color: #fff;
text-align: center;
margin: 0;
padding: 20px;
}
h1 {
margin-bottom: 20px;
color: #ec7b96;
}
#table {
display: flex;
justify-content: center;
gap: 40px;
margin-bottom: 20px;
}
.hand-container {
background: #696c6c;
padding: 15px 20px;
border-radius: 8px;
min-width: 220px;
}
.cards {
min-height: 40px;
margin: 10px 0;
}
.card {
display: inline-block;
padding: 6px 10px;
margin: 2px;
background: #fff;
color: #000;
border-radius: 4px;
font-weight: bold;
}
.total {
font-size: 14px;
opacity: 0.9;
}
#controls {
margin: 15px 0;
}
#controls button {
padding: 8px 16px;
margin: 0 5px;
border-radius: 4px;
border: none;
font-size: 14px;
cursor: pointer;
}
#new-game-btn {
background: #fbbf24;
}
#hit-btn {
background: #22c55e;
}
#stand-btn {
background: #3b82f6;
}
#controls button:disabled {
background: #6b7280;
cursor: default;
}
#status {
margin-top: 15px;
font-size: 18px;
font-weight: bold;
}