-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (80 loc) · 1.34 KB
/
style.css
File metadata and controls
92 lines (80 loc) · 1.34 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
* {
margin: 0;
padding: 0;
font-family: cursive;
}
.nav {
height: 8vh;
background-color: rgb(39, 13, 63);
display: flex;
justify-content: center;
align-items: center;
color:white;
font-size: 1.7rem;
}
.container {
height: 30vh;
display: flex;
justify-content: center;
align-items: center;
gap:2rem;
}
.box {
height: 145px;
width: 145px;
}
.box:hover {
border:2px solid black;
border-radius: 50%;
opacity: 0.8;
cursor: pointer;
}
img {
border-radius: 50%;
height: 145px;
width: 145px;
object-fit: cover;
}
.scoreBoard {
height: 7vh;
display: flex;
justify-content: center;
align-items: center;
gap: 7rem;
font-size: 1.5rem;
font-weight: 500;
margin-top: 2rem;
}
.score1, .score2 {
font-size: 1.8rem;
}
.score1 {
margin-left: 0.7rem;
}
.score2 {
margin-left:2.5rem;
}
.msgContainer {
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
margin-top: 5rem;
color:white;
}
.msg {
display: inline;
background-color:rgb(39, 13, 63);
border-radius: 0.5rem;
padding: 0.3rem 1rem;
}
.btn {
background-color:rgb(237, 237, 55);
border-radius: 0.35rem;
font-size: 1.2rem;
margin: 2rem;
padding: 0.2rem 0.8rem;
}
.button {
text-align: end;
}