-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (60 loc) · 985 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
53
54
55
56
57
58
59
60
61
62
63
64
*{
margin: 0;
padding:0;
}
h1{
height: 4rem;
text-align: center;
background-color:azure;
color: black;
line-height: 5rem;
margin-bottom: 1rem;
}
body{
background-color: white;
color: black;
}
.choices{
align-items: center;
justify-content: center;
display: flex;
gap: 5rem;
}
.choice:hover{
opacity: 0.5;
cursor: pointer;
background-color: black;
height: 105px;
width: 105px;
border-radius:5em;
}
.choice{
height: 150px;
width: 100px;
display: flex;
justify-content: center;
align-items: center;
}
img{
height: 150px;
width: 150px;
object-fit: cover;
border-radius:5rem;
}
.score-board{
margin-top: 5rem;
display: flex;
justify-content: center;
gap: 4rem;
}
.score{
text-align: center;
font-size: 25px;
}
.msg-container{
margin-top : 200px;
display: flex;
margin-top: 2rem;
justify-content: center;
font-size: 30px;
}