-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (75 loc) · 1.38 KB
/
styles.css
File metadata and controls
76 lines (75 loc) · 1.38 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
71
72
73
74
75
76
*{
margin: 0;
padding: 0;
background-color: #81b29a;
text-align: center;
font-family: 'Poppins', sans-serif;
}
h1{
background-color: #3d405b;
color: #fff;
font-size: 70px;
font-size: 300%;
line-height: 1.5;
padding: 1rem;
}
.container{
display: flex;
justify-content: center;
align-items: center;
gap: 3rem;
margin-top: 6rem;
}
.choice{
height: 165px;
width: 165px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
}
choice:hover{
opacity: 0.3;
cursor: pointer;
background-color: #e76f51;
transition: 0.5s;
}
img{
height: 150px;
width: 150px;
border-radius: 50%;
object-fit: cover;
}
.result{
color: #ef233c;
font-size: 45px;
font-weight: 500;
display: flex;
margin-top: 5rem;
justify-content: center;
align-items: center;
margin-top: 5rem;
margin-bottom: 4rem;
gap: 3rem;
}
.prep, .cons{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#userscore, #compscore{
font-size: 70px;
font-weight: 500;
color: #fdfcdc;
}
#msg{
background-color: #f4a261;
font-size: 60px;
color: #fff;
padding: 1rem;
display: inline;
justify-content: center;
align-items: center;
border-radius: 5rem;
}