-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (62 loc) · 1015 Bytes
/
style.css
File metadata and controls
62 lines (62 loc) · 1015 Bytes
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
*{
padding: 0px;
margin: 0px;
text-align: center;
}
h1{
background-color: #36151E;
color:white;
height: 65px;
padding-top: 25px;
}
img{
height:150px;
width:150px;
object-fit: cover;
border-radius: 50%;
}
.game{
display: flex;
justify-content: center;
align-items: center;
margin-top: 35px;
gap:75px;
}
.choice{
height: 154px;
width: 154px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
}
img:hover {
cursor: pointer;
border:black 4px solid;
border-radius: 50%;
}
.score_board{
margin-top: 65px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap:50px;
}
#user_score, #comp_score {
font-size: 40px;
}
.name{
font-size: 20px;
}
.msg_container{
margin-top: 60px;
}
#msg{
background-color: #593F62;
color: aliceblue;
display: inline;
padding: 10px;
font-size: 20px;
border-radius: 0.5rem;
}