-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (45 loc) · 842 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
52
53
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
body {
background-color: rgb(25, 25, 25);
color: white;
font-family: Arial;
}
.move-icon{
height: 50px;
}
.buttons{
display: flex;
}
.move-button{
background-color: transparent;
border: 3px solid white;
width: 120px;
height: 120px;
border-radius: 60px;
margin-right: 10px;
cursor: pointer;
}
.move-button:hover{
background-color: red;
}
.result{
font-size: 25px;
font-weight: bold;
margin-top: 50px;
}
.score{
margin-top: 60px;
}
.reset-score-button, .auto-play-button{
background-color: white;
border: none;
font-size: 15px;
padding: 8px 15px;
cursor: pointer;
margin-top: 20px;
}