-
Notifications
You must be signed in to change notification settings - Fork 0
/
game-hands-styles.css
83 lines (68 loc) · 1.22 KB
/
game-hands-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
82
83
body{
background-color: rgb(25,25,25);
color: white;
font-family: arial;
}
.game-interface{
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
}
.game-top{
display: flex;
text-align: center;
justify-content: space-around;
margin-bottom: 100px;
}
.game-middle{
display: flex;
flex-direction: column;
text-align: center;
margin-bottom: 100px;
}
.game-botton{
margin: auto;
}
.game-autoplay{
display: flex;
justify-content: end;
margin-right: 10px;
margin-bottom: 100px;
}
.reset-button,
.autoPlay-button{
background-color: white;
padding: 10px 15px;
font-weight: bold;
font-size: 14px;
border: none;
cursor: pointer;
}
.reset-button-container{
display: flex;
flex-direction: column;
align-self: center;
}
.move-icon{
height: 50px;
}
.move-button{
background-color: transparent;
border: 3px solid white;
/* padding: 30px; */
width: 120px;
height: 120px;
border-radius: 100px;
margin-right: 10px;
cursor: pointer;
}
.result{
font-size: 25px;
font-weight: bold;
margin-bottom: 90px;
}
.moves{
font-size: 20px;
font-weight: bold;
}