-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrps.css
More file actions
63 lines (55 loc) · 902 Bytes
/
rps.css
File metadata and controls
63 lines (55 loc) · 902 Bytes
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
*{
margin: 0;
padding: 0;
text-align: center;
}
body{
background-color: #F7EF81;
}
h1{
color: #274C77;
font-size: 4rem;
text-decoration: underline;
line-height: 7rem;
margin-bottom: 50px;
}
.choice{
height: 165px;
width: 165px;
display: inline;
}
img{
height: 300px;
width: 300px;
object-fit: cover;
margin: 15px;
border-radius: 300px;
border-color: rgb(16, 14, 16);
border-style: solid;
border-width: 15px;
}
img:hover{
border-color: rgb(155, 12, 171);
}
.score-board{
display: flex;
justify-content: center;
align-items: center;
}
p{
display: inline-block;
}
.score{
font-size: 40px;
margin: 7px;
}
.msg{
margin: 10px;
font-size: 30px;
color: rgb(244, 242, 248);
display: inline;
background-color: black;
border-radius: 5px;
padding: 9px;
margin: 10px;
}