-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (66 loc) · 1.19 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
body {
background-color: rgb(54, 54, 54);
color: white;
font-family: Arial, Helvetica, sans-serif;
}
.title {
font-size: 40px;
text-align: center;
margin: 50px 0;
}
.box {
display: flex;
justify-content: center;
padding: 100px 0 20px 0;
margin-bottom: 40px;
}
.move-icon {
height: 100px;
padding: 30px;
}
.show-move-icon {
height: 50px;
}
.move-button {
background-color: transparent;
border: 2px solid white;
border-radius: 50%;
cursor: pointer;
margin-right: 35px;
}
.info-box {
display: flex;
flex-direction: column;
align-items: center;
}
.info-box-stats {
font-size: 20px;
font-weight: bold;
}
#game-result {
font-size: 25px;
}
#autoPlay-Button, #reset-Button {
background-color: transparent;
color: white;
font-size: 15px;
padding: 10px;
border: 1px solid rgb(105, 105, 105);
cursor: pointer;
}
#autoPlay-Button{
margin-left: 15px;
}
.instructions {
position: absolute;
right: 0;
bottom: 0;
margin: 15px;
border: 1px solid rgb(105, 105, 105);
}
.points {
font-size: 14px;
list-style-type: none;
padding-right: 30px;
line-height: 1.4em;
}