-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
51 lines (44 loc) · 790 Bytes
/
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
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#game-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#board {
display: grid;
grid-template-columns: repeat(4, 100px);
gap: 10px;
margin: 20px 0;
}
.card {
width: 100px;
height: 100px;
border: 1px solid black;
display: flex;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
}
.selected {
border: 2px solid red;
}
#player-hand {
display: flex;
gap: 10px;
}
#score-board {
display: flex;
gap: 20px;
}
#turn-indicator {
margin: 20px 0;
font-size: 18px;
font-weight: bold;
}