-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (84 loc) · 1.28 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#heading {
text-align: center;
background-color: #000;
color: #fff;
padding: 1.5rem 0;
margin-bottom: 1rem;
}
.choices {
display: flex;
justify-content: center;
align-items: center;
gap: 3rem;
margin-top: 5rem;
}
.choice {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
height: 165px;
width: 165px;
}
.choice:hover {
cursor: pointer;
background-color: #081b31;
/* height: 155px; */
}
img {
height: 150px;
width: 150px;
object-fit: cover;
border-radius: 50%;
}
.scores {
display: flex;
align-items: center;
justify-content: center;
margin-top: 3rem;
gap: 5rem;
font-size: 2rem;
}
#userData,
#compData {
text-align: center;
}
#userScore,
#compScore {
font-size: 4rem;
}
.msg-container {
margin-top: 4rem;
text-align: center;
}
#msg {
background-color: #081b31;
color: #fff;
font-size: 2rem;
display: inline;
padding: 1rem;
border-radius: 1rem;
}
.btnContainer {
display: flex;
align-items: center;
justify-content: center;
}
.resetBtn {
padding: 1rem;
background-color: black;
color: white;
margin-top: 2rem;
border: none;
border-radius: 20px;
font-size: 1.2rem;
cursor: pointer;
}
.hide {
display: none;
}