-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.css
More file actions
70 lines (68 loc) · 1.13 KB
/
game.css
File metadata and controls
70 lines (68 loc) · 1.13 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
.heading{
background-color: rgb(4, 4, 77);
color: white;
font-size:20px;
font-weight:bold;
padding: 10px;
}
body{
text-align: center;
}
.container{
height: 20vh;
justify-content: center;
align-items: center;
display: flex;
}
.choices{
display: flex;
justify-content: center;
align-items: center;
margin-top:0;
}
.choice{
height: 100px;
width: 100px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 20px;
}
.choice:hover{
cursor: pointer;
background-color: black;
}
img{
height: 100px;;
width: 100px;
border-radius: 50%;
object-fit:cover;
}
.score_box{
font-size: 15px;
margin: 20px;
}
#user_score{
font-size: 25px;
}
#comp_score{
font-size: 25px;
}
.scoreboard{
display: flex;
justify-content: center;
line-height:20px;
margin-top:50px ;
}
#msg{
color:white;
padding-top:10px;
padding-bottom: 10px;
background-color: black;
display: inline-block;
padding-left: 20px;
padding-right: 20px;
border-radius: 15px;
margin-top: 20px;
}