-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.css
More file actions
70 lines (61 loc) · 1.03 KB
/
game.css
File metadata and controls
70 lines (61 loc) · 1.03 KB
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
* {
margin: 0;
padding: 0;
}
body {
background-color: #FB8B24;
}
h1 {
text-align: center;
color: #291720;
font-size: 40px;
margin-top: 25px;
}
.choices {
height: 200px;
display: flex;
justify-content: center;
gap: 2rem;
/* border: 1px solid black;*/
align-items: center;
}
.choice {
margin-top: 30px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.choice:hover {
cursor: pointer;
opacity: 0.5;
background-color: #291720;
}
img {
height: 120px;
width: 120px;
border-radius: 50%;
}
.score-board {
height: 150px;
/* border: 1px solid black;*/
display: flex;
justify-content: center;
align-items: flex-end;
}
.score {
height: 100px;
width: 100px;
font-size: 20px;
/*border: 1px solid black;*/
}
.msg-container {
text-align: center;
font-size: 30px;
color: white;
background-color: #291720;
display: inline-block;
margin-left: 640px;
border-radius: 1rem;
padding: 1rem;
}