-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (70 loc) · 1.26 KB
/
styles.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
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #2e7d32;
color: white;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
h1 {
margin-top: 20px;
}
#game {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 600px;
}
.hand {
margin: 20px;
border: 2px solid white;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 300px;
}
.cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.cards img {
margin: 5px;
}
#controls {
position: fixed;
bottom: 20px;
width: 100%;
display: flex;
justify-content: center;
gap: 10px;
}
button {
margin: 10px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
background-color: #388e3c;
color: white;
transition: background-color 0.3s;
}
button:hover {
background-color: #1b5e20;
}
button:disabled {
background-color: #9e9e9e;
}
#result {
font-size: 20px;
margin-top: 20px;
}