-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRPS.css
104 lines (101 loc) · 1.83 KB
/
RPS.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
100
101
102
103
104
*{
text-align: center;
}
#heading{
display: flex;
justify-content: center;
height: 150px;
background-color: rgb(34, 32, 32);
}
/* *{
background-color: rgb(169, 154, 87);
} */
#container{
height: 130px;
display: flex;
justify-content: center;
gap: 8rem;
margin: 4rem;
/* margin-top: 0rem; */
}
.symbol{
height: 130px;
width: 130px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.image{
height: 130px;
width: 130px;
object-fit: cover;
border-radius: 50%;
cursor: pointer;
}
.image:hover{
opacity: 0.6;
border: 0px solid rgb(34, 32, 32);
}
#score-board{
/* border: 2px solid black; */
display: flex;
justify-content: center;
gap: 0rem;
margin-top: 4.5rem;
}
#beat{
padding-top: 14px;
}
.score{
/* border: 2px solid black; */
width: 300px;
font-size: 25px;
text-align: center;
align-items: center;
}
.result{
/* border: 2px solid black; */
margin-top: 4rem;
display: flex;
justify-content: center;
align-items: center;
/* background-color: rgb(70, 18, 66);
color: aliceblue; */
}
.message{
/* border: 2px solid black; */
width: 180px;
height: 40px;
border-radius: 1.5rem;
background-color: rgb(70, 18, 66);
color: aliceblue;
}
#small-logo{
height: 100px;
display: flex;
justify-content: end;
}
#you{
/* border: 2px solid black; */
width: 80px;
box-shadow: 10px 7px 20px black ;
}
#bot{
/* border: 2px solid black; */
width: 80px;
box-shadow: 10px 7px 20px black ;
}
@font-face {
font-family: InterBlack;
src: url(../html/Inter-Black.ttf);
}
@font-face {
font-family: InterBold;
src: url(../html/Inter-Bold.ttf);
}
p{
font-family: InterBlack;
font-size: 18px;
margin: 8px;
}