-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (44 loc) · 766 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
body {
background-color: #3b3b3b;
font-size: 20px;
}
.buttons {
display: flex;
justify-content: center;
margin-top: 100px;
padding-bottom: 50px;
}
.btn {
color: #fff;
font-size: 30px;
background-color: #83df4e;
border: 1px solid #79ce48;
border-radius: 10px;
padding: 10px 30px;
justify-content: center;
margin-right: 20px;
width: 250px;
}
.btn:hover,
.btn:active {
color: #3b3b3b;
cursor: pointer;
}
.game-result {
margin-top: 25px;
display: grid;
justify-content: center;
font-size: 150%;
}
.score {
display: grid;
justify-content: center;
color: #ccc;
}
.score li {
list-style: none;
}
.round-result {
display: grid;
justify-content: center;
}